1252125312541255125612571258
* * @param function a transformation to apply to the gathered list * @return the extended Pipeline */ public GremlinPipeline<S, ?> gather(PipeFunction<List, ?> function) { return this.add(new GatherFunctionPipe(FluentUtility.prepareFunction(this.asMap, function))); }
307308309310311312313
public PipesPipeline<S, List> gather() { return this.add(new GatherPipe()); } public PipesPipeline<S, ?> gather(PipeFunction<List, ?> function) { return this.add(new GatherFunctionPipe(FluentUtility.prepareFunction(this.asMap, function))); }