(i ...PipelineElement)
| 172 | func (Pipeline) __spansetExpression() {} |
| 173 | |
| 174 | func newPipeline(i ...PipelineElement) Pipeline { |
| 175 | return Pipeline{ |
| 176 | Elements: i, |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | func (p Pipeline) addItem(i PipelineElement) Pipeline { |
| 181 | p.Elements = append(p.Elements, i) |
no outgoing calls