Enumeration SplitValueCarry

Strategy for carrying over split/toggle values. It defines what to do with each value that triggers the split/toggle.

Note that split operator treats this enum in non-strict manner:

  • any negative number is treated as back
  • any positive number is treated as forward
  • everything else is treated as none

Enumeration Members

Enumeration Members

back: -1

Split/toggle value is carried back, to be the last value in the current list.

forward: 1

Split/toggle value is carried forward, to make the first value in the next list.

none: 0

Split/toggle value is just a placeholder/gap, to be skipped. This is the default.