SortAlphabeticFunc returns a `less()` comparator for sorting strings while respecting case.
(list []string)
| 36 | // SortAlphabeticFunc returns a `less()` comparator for sorting strings while |
| 37 | // respecting case. |
| 38 | func SortAlphabeticFunc(list []string) func(i, j int) bool { |
| 39 | return func(i, j int) bool { |
| 40 | return LessIgnoreCase(list[i], list[j]) |
| 41 | } |
| 42 | } |
no test coverage detected