Exemplo n.º 1
0
 public SD_Map(
     QueryOperationNode parent, StreamContext context, DoubleUnaryOperator doubleUnaryOperator) {
   super(parent, context);
   this.doubleUnaryOperator =
       Objects.requireNonNull(doubleUnaryOperator, "doubleUnaryOperator is null");
   context.checkNotConsumed();
 }
Exemplo n.º 2
0
 public SIT_ForEachOrdered(QueryOperationNode parent, StreamContext context, IntConsumer action) {
   super(parent);
   this.action = Objects.requireNonNull(action, "action is null");
   context.consume();
 }
Exemplo n.º 3
0
 public SIT_Average(QueryOperationNode parent, StreamContext context) {
   super(parent);
   context.consume();
 }
Exemplo n.º 4
0
 public SLT_Min(QueryOperationNode parent, StreamContext context) {
   super(parent);
   context.consume();
 }