* Perform window calculations and write results to the input stream. * @constructor * @param {object} params - The parameters for this operator. * @param {function(*,*): number} [params.sort] - A comparator function for sorting tuples within a window. * @param {Array } [param
(params)
| 118928 | * number alone, ignoring peers with identical sort values. If false (default), |
| 118929 | * the window boundaries will be adjusted to include peer values. |
| 118930 | */ function Window(params) { |
| 118931 | (0, _vegaDataflow.Transform).call(this, {}, params); |
| 118932 | this._mlen = 0; |
| 118933 | this._mods = []; |
| 118934 | } |
| 118935 | Window.Definition = { |
| 118936 | "type": "Window", |
| 118937 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected