public interface IntIntIntProcedure
Modifier and Type | Method and Description |
---|---|
boolean |
apply(int first,
int second,
int third)
Applies a procedure to three arguments.
|
boolean apply(int first, int second, int third)
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.
first
- first argument passed to the procedure.second
- second argument passed to the procedure.third
- third argument passed to the procedure.Jas4pp 1.5 © Java Analysis Studio for Particle Physics