Skip to content

Sequence values to indexes¤

Transforms the sequence of values to their respective indexes in the sequence. If there is more than one input, the values are numbered from the first input on and continued for the next inputs. Applied against an RDF source the order might not be deterministic.

Examples¤

Notation: List of values are represented via square brackets. Example: [first, second] represents a list of two values “first” and “second”.


Transforms the sequence of values to their respective indexes in the sequence:

  • Input values:

    1. [a, b, c]
  • Returns: [0, 1, 2]

Parameter¤

None

Comments