New Works.

-Added: Set
-Added: Sorted Set
-Added: HashSet
-Added: LinkedHashSet
-Changed: HASH method was changed to TO_HASH
-Added: New Patterns.
This commit is contained in:
2020-12-13 20:14:22 +01:00
parent fc7bca3500
commit 16efec5ca4
14 changed files with 1260 additions and 34 deletions
@@ -32,6 +32,6 @@ public interface COMPARATOR extends Comparator<CLASS_TYPE>
*/
public static COMPARATOR of(Comparator<CLASS_TYPE> c) {
Objects.requireNonNull(c);
return (K, V) -> c.compare(KEY_TO_OBJ(K), KEY_TO_OBJ(V))
return (K, V) -> c.compare(KEY_TO_OBJ(K), KEY_TO_OBJ(V));
}
}