Documentation of 'cern.colt.function.tlong.LongLongLongProcedure' Java class
LongLongLongProcedure
cern.colt.function.tlong

Interface LongLongLongProcedure



  • public interface LongLongLongProcedure
    Interface that represents a procedure object: a procedure that takes three arguments and does not return a value.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      boolean apply(long first, long second, long third)
      Applies a procedure to three arguments.
    • Method Detail

      • apply

        boolean apply(long first,
                      long second,
                      long third)
        Applies a procedure to three arguments. Optionally can return a boolean flag to inform the object calling the procedure.

        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.

        Parameters:
        first - first argument passed to the procedure.
        second - second argument passed to the procedure.
        third - third argument passed to the procedure.
        Returns:
        a flag to inform the object calling the procedure.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.