public interface IntMatrix1DProcedure
| Modifier and Type | Method and Description | 
|---|---|
| boolean | apply(IntMatrix1D element)Applies a procedure to an argument. | 
boolean apply(IntMatrix1D element)
Example: forEach() methods often use procedure objects. To signal to a forEach() method whether iteration should continue normally or terminate (because for example a matching element has been found), a procedure can return false to indicate termination and true to indicate continuation.
element - element passed to the procedure.Jump to the Parallel Colt Homepage