Package org.eclipse.collections.api.block.procedure
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().
-
ClassDescriptionDeprecated.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().
ObjectIntProcedure
instead.