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 Detail

      • value

        void value​(int each,
                   int index)
        Deprecated.