sortBys determines how to sort the selected files in the directory. Default is alpha by name, optionally can be sorted by modification time.
(modTime bool)
| 428 | // sortBys determines how to sort the selected files in the directory. |
| 429 | // Default is alpha by name, optionally can be sorted by modification time. |
| 430 | func (fn *Node) sortBys(modTime bool) { //types:add |
| 431 | fn.SelectedFunc(func(sn *Node) { |
| 432 | sn.sortBy(modTime) |
| 433 | }) |
| 434 | } |
| 435 | |
| 436 | // sortBy determines how to sort the files in the directory -- default is alpha by name, |
| 437 | // optionally can be sorted by modification time. |
nothing calls this directly
no test coverage detected