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.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
call
(long first, long limit, long step) for(long i = first; i invalid input: '<' limit; i += step)
-
Method Details
-
call
void call(long first, long limit, long step) for(long i = first; i invalid input: '<' limit; i += step)- Parameters:
first
- The initial valuelimit
- The value limitstep
- The increment size
-