Sorts the table by the first column. @return self reference
()
| 74 | * @return self reference |
| 75 | */ |
| 76 | public Table sort() { |
| 77 | contents.sort((tl1, tl2) -> compare(lc(tl1.get(0)), lc(tl2.get(0)))); |
| 78 | return this; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Moves the specified string to top. |
no test coverage detected