@FunctionalInterface public interface TFunction<T,R>
Modifier and Type | Method and Description |
---|---|
default <V> TFunction<T,V> |
andThen(TFunction<? super R,? extends V> after) |
R |
apply(T t) |
default <V> TFunction<V,R> |
compose(TFunction<? super V,? extends T> before) |
static <T> TFunction<T,T> |
identity() |
Copyright © 2019. All rights reserved.