程序包 com.jackmeng

接口 Function<T,R>


public interface Function<T,R>
  • 方法详细资料

    • identity

      static <T> Function<T,T> identity()
    • compose

      default <V> Function<V,R> compose(Function<? super V,? extends T> before)
    • apply

      R apply(T t)
    • andThen

      default <V> Function<T,V> andThen(Function<? super R,? extends V> after)