public interface IntObjectProcedure
boolean apply(int first, Object second)
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.Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.