* Filters data tuples according to a predicate function. * @constructor * @param {object} params - The parameters for this operator. * @param {function(object): *} params.expr - The predicate expression function * that determines a tuple's filter status. Truthy values pass the filter.
(params)
| 117285 | * @param {function(object): *} params.expr - The predicate expression function |
| 117286 | * that determines a tuple's filter status. Truthy values pass the filter. |
| 117287 | */ function Filter(params) { |
| 117288 | (0, _vegaDataflow.Transform).call(this, (0, _vegaUtil.fastmap)(), params); |
| 117289 | } |
| 117290 | Filter.Definition = { |
| 117291 | "type": "Filter", |
| 117292 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected