514515516517518519520
* * @param function the function of the FunctionPipe * @return the extended Pipeline */ public GremlinPipeline<S, ?> step(final PipeFunction function) { return this.add(new FunctionPipe(FluentUtility.prepareFunction(this.asMap, function))); }
78798081828384
this.addPipe(pipe); return (PipesPipeline<S, T>) this; } public PipesPipeline<S, ?> step(final PipeFunction function) { return this.add(new FunctionPipe(function)); }