Uses of Interface
cn.longky.common.function.KFunction

Packages that use KFunction
Package
Description
 
  • Uses of KFunction in cn.longky.common.function

    Methods in cn.longky.common.function that return KFunction
    Modifier and Type
    Method
    Description
    default <V> KFunction<T,V>
    KFunction.andThen(KFunction<? super R,? extends V> after)
    Returns a composed function that first applies this function to its input, and then applies the after function to the result.
    default <V> KFunction<V,R>
    KFunction.compose(KFunction<? super V,? extends T> before)
    Returns a composed function that first applies the before function to its input, and then applies this function to the result.
    static <T> KFunction<T,T>
    KFunction.identity()
    Returns a function that always returns its input argument.
    Methods in cn.longky.common.function with parameters of type KFunction
    Modifier and Type
    Method
    Description
    default <V> KFunction<T,V>
    KFunction.andThen(KFunction<? super R,? extends V> after)
    Returns a composed function that first applies this function to its input, and then applies the after function to the result.
    default <V> KFunction<V,R>
    KFunction.compose(KFunction<? super V,? extends T> before)
    Returns a composed function that first applies the before function to its input, and then applies this function to the result.