Class DivideOperation<T extends Number>

java.lang.Object
jromp.parallel.operation.DivideOperation<T>
Type Parameters:
T - the type of the value.
All Implemented Interfaces:
Supplier<UnaryOperator<T>>, Operation<T>

public class DivideOperation<T extends Number> extends Object implements Operation<T>
Operation to divide a value by another value.
  • Constructor Details

    • DivideOperation

      public DivideOperation(T value)
      Constructs a divide operation.
      Parameters:
      value - the value to divide by.
  • Method Details