* Performs a relational projection, copying selected fields from source * tuples to a new set of derived tuples. * @constructor * @param {object} params - The parameters for this operator. * @param {Array<function(object): *} params.fields - The fields to project, * as an array of field acces
(params)
| 91590 | * the field accessor. |
| 91591 | */ |
| 91592 | function Project(params) { |
| 91593 | _vegaDataflow.Transform.call(this, null, params); |
| 91594 | } |
| 91595 | |
| 91596 | Project.Definition = { |
| 91597 | "type": "Project", |
nothing calls this directly
no outgoing calls
no test coverage detected