Package org.ojalgo.structure
Interface Structure1D.LoopCallback
-
- Enclosing interface:
- Structure1D
- 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 Structure1D.LoopCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
call(long first, long limit, long step)
for(long i = first; i < limit; i += step)
-