org.apache.mahout.math.function
Interface IntIntIntProcedure


Deprecated. until unit tests are in place. Until this time, this class/interface is unsupported.

@Deprecated
public interface IntIntIntProcedure


Method Summary
 boolean apply(int first, int second, int third)
          Deprecated. Applies a procedure to three arguments.
 

Method Detail

apply

boolean apply(int first,
              int second,
              int third)
Deprecated. 
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.


Copyright © 2008-2010 The Apache Software Foundation. All Rights Reserved.