Interface StackingFunction

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 interface StackingFunction
A functional interface used by stacking behaviour - essentially just a five input function.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    result(double k, double k2, double v, double v2, double i)
     
  • Method Details

    • result

      double result(double k, double k2, double v, double v2, double i)