Interface IntProcedureWithInt

All Superinterfaces:
Serializable
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @Deprecated public interface IntProcedureWithInt extends Serializable
Deprecated.
since 1.2 use IntIntProcedure
A IntProcedureWithInt is a two argument Closure which has no return argument and takes an int as a first and second argument. The second argument is usually the index of the current element of a collection.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    value(int each, int index)
    Deprecated.
     
  • Method Details

    • value

      void value(int each, int index)
      Deprecated.