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

    Modifier and Type
    Method
    Description
    void
    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 value
      limit - The value limit
      step - The increment size