not sure if this is worth it. `java.util.function....
# announcements
p
not sure if this is worth it.
java.util.function.Function
simply has:
Copy code
static <T> Function<T, T> identity() {
    return t -> t;
}