Package org.xcsp.common
Interface FunctionalInterfaces.Intx6Consumer
-
- Enclosing interface:
- FunctionalInterfaces
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface FunctionalInterfaces.Intx6Consumer
Represents an operation that accepts six integers and returns no result. This is a functional interface whose functional method is accept(int,int,int,int,int,int).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(int i, int j, int k, int l, int m, int n)
Performs this operation on the given arguments.
-