groupSortOn length ["test","of","sized","item"] == [["of"],["test","item"],["sized"]]
groupOn abs [1,-1,2] == [[1,-1], [2]]
> classifyOn head ["sheep", "chip", "ship", "cheap"] [["sheep","ship"],["chip","cheap"]]
> classifyOn odd [1,2,3,4,5,6] [[1,3,5],[2,4,6]]