Uses of Interface
manifold.ext.rt.api.IndexedFunction
-
Packages that use IndexedFunction Package Description manifold.ext.rt.api -
-
Uses of IndexedFunction in manifold.ext.rt.api
Methods in manifold.ext.rt.api that return IndexedFunction Modifier and Type Method Description default <V> IndexedFunction<T,V>IndexedFunction. andThen(IndexedFunction<? super R,? extends V> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.default <V> IndexedFunction<V,R>IndexedFunction. compose(IndexedFunction<? super V,? extends T> before)Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.static <T> IndexedFunction<T,T>IndexedFunction. identity()Returns a function that always returns its input argument.Methods in manifold.ext.rt.api with parameters of type IndexedFunction Modifier and Type Method Description default <V> IndexedFunction<T,V>IndexedFunction. andThen(IndexedFunction<? super R,? extends V> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.default <V> IndexedFunction<V,R>IndexedFunction. compose(IndexedFunction<? super V,? extends T> before)Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.
-