public SD_Map( QueryOperationNode parent, StreamContext context, DoubleUnaryOperator doubleUnaryOperator) { super(parent, context); this.doubleUnaryOperator = Objects.requireNonNull(doubleUnaryOperator, "doubleUnaryOperator is null"); context.checkNotConsumed(); }
public SIT_ForEachOrdered(QueryOperationNode parent, StreamContext context, IntConsumer action) { super(parent); this.action = Objects.requireNonNull(action, "action is null"); context.consume(); }
public SIT_Average(QueryOperationNode parent, StreamContext context) { super(parent); context.consume(); }
public SLT_Min(QueryOperationNode parent, StreamContext context) { super(parent); context.consume(); }