Interface OngoingBinaryOperation<T>

  • Type Parameters:
    T - the type of the scalar values on which the operations take place
    All Known Implementing Classes:
    OngoingScalarBinaryOperation

    public interface OngoingBinaryOperation<T>
    An interface for parts of the tensorics fluent API to the describe the right hand clause of a binary operation. The main purpose of this interfacce is to streamline the naming for implementations on different types.
    • Method Detail

      • plus

        T plus​(T rightOperand)
      • minus

        T minus​(T rightOperand)
      • times

        T times​(T rightOperand)
      • dividedBy

        T dividedBy​(T rightOperand)
      • toThePowerOf

        T toThePowerOf​(T power)
      • root

        T root​(T element)