* Merge a collection of value arrays. * @constructor * @param {object} params - The parameters for this operator. * @param {Array >} params.values - The input value arrrays.
(params)
| 118033 | * @param {object} params - The parameters for this operator. |
| 118034 | * @param {Array<Array<*>>} params.values - The input value arrrays. |
| 118035 | */ function MultiValues(params) { |
| 118036 | (0, _vegaDataflow.Operator).call(this, null, update, params); |
| 118037 | } |
| 118038 | (0, _vegaUtil.inherits)(MultiValues, (0, _vegaDataflow.Operator)); |
| 118039 | function update(_1) { |
| 118040 | return this.value && !_1.modified() ? this.value : _1.values.reduce((data, _)=>data.concat(_), []); |
no outgoing calls
no test coverage detected