Uses of Interface
io.keikai.doc.collab.lib0.TriFunction
-
Packages that use TriFunction Package Description io.keikai.doc.collab.lib0 io.keikai.doc.collab.types -
-
Uses of TriFunction in io.keikai.doc.collab.lib0
Methods in io.keikai.doc.collab.lib0 that return TriFunction Modifier and Type Method Description default <W> TriFunction<T,U,V,W>TriFunction. andThen(java.util.function.Function<? super R,? extends W> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.Methods in io.keikai.doc.collab.lib0 with parameters of type TriFunction Modifier and Type Method Description static <I> booleanArrays. every(java.util.List<I> arr, TriFunction<I,java.lang.Integer,java.util.List<I>,java.lang.Boolean> f)static <T,R>
RArrays. fold(java.util.List<T> arr, R seed, TriFunction<R,T,java.lang.Number,R> folder)static <S> booleanArrays. some(java.util.List<S> arr, TriFunction<S,java.lang.Integer,java.util.List<S>,java.lang.Boolean> f) -
Uses of TriFunction in io.keikai.doc.collab.types
Methods in io.keikai.doc.collab.types with parameters of type TriFunction Modifier and Type Method Description <M> java.util.List<M>YArray. map(TriFunction<T,java.lang.Number,AbstractType,M> f)Returns a List with the result of calling a provided function on every element of this YArray.static <C,R>
java.util.List<R>AbstractType. typeListMap(AbstractType type, TriFunction<C,java.lang.Number,AbstractType,R> f)Maps the elements in the type to a new list using the provided function.
-