* Generates data tuples for a specified sequence range of numbers. * @constructor * @param {object} params - The parameters for this operator. * @param {number} params.start - The first number in the sequence. * @param {number} params.stop - The last number (exclusive) in the sequence. * @param
(params)
| 118480 | * @param {number} params.stop - The last number (exclusive) in the sequence. |
| 118481 | * @param {number} [params.step=1] - The step size between numbers in the sequence. |
| 118482 | */ function Sequence(params) { |
| 118483 | (0, _vegaDataflow.Transform).call(this, null, params); |
| 118484 | } |
| 118485 | Sequence.Definition = { |
| 118486 | "type": "Sequence", |
| 118487 | "metadata": { |
nothing calls this directly
no outgoing calls
no test coverage detected