Interface NFunction<T,R>


public interface NFunction<T,R>
Since:
0.8
Author:
Haiyang Li
  • Method Summary

    Modifier and Type
    Method
    Description
    default <V> NFunction<T,V>
    andThen(Function<? super R,? extends V> after)
     
    apply(T... args)
     
  • Method Details

    • apply

      R apply(T... args)
    • andThen

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