Uses of Interface
org.eclipse.collections.api.block.function.Function3
-
Packages that use Function3 Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap -
-
Uses of Function3 in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type Function3 Modifier and Type Method Description <IV,P>
IVMutableCollection. injectIntoWith(IV injectValue, Function3<? super IV,? super T,? super P,? extends IV> function, P parameter)Returns the final result of evaluating function using each element of the iterable, the previous evaluation result and the parameters. -
Uses of Function3 in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type Function3 Modifier and Type Method Description default <IV> IVMapIterable. injectIntoKeyValue(IV injectedValue, Function3<? super IV,? super K,? super V,? extends IV> function)Implements theinjectIntopattern with each key-value pair of the map.
-