Skip to main content

List

A List expression is a vertical list of items, where each item is an expression.

Semantics

  • Returns a FEEL List: [item1, item2, item3].
  • Useful for defining fixed collections of data to iteration over.

Example

List
1
2
3

Result: [1, 2, 3]