Package org.eclipse.collections.api.block.procedure
This package contains interfaces for Procedure API.
A Procedure is a single argument lambda which has no return argument.
This package contains the following interfaces:
-
Procedure- a single argument lambda which has no return argument. -
Procedure2- a two argument Procedure. Used by forEachWith() methods and for MapIterate.forEachKeyValue().
-
Interface Summary Interface Description ObjectIntProcedure<T> Deprecated. since 3.0 useObjectIntProcedureinstead.Procedure<T> A Procedure is a single argument lambda which has no return argument.Procedure2<T1,T2> A Procedure2 is used by forEachWith() methods and for MapIterate.forEachKeyValue().