Skip to main content

Lists

  • List Concat: Pure read expression that returns a new list containing all items of a followed by all items of b.
  • List Contains: Pure read expression that returns true when a list contains the given value.
  • List Get: Pure read expression for list access.
  • List Index Of: Pure read expression that returns the index of a value in a list.
  • List Insert: Mutating statement for inserting one value into a list variable.
  • List Is Empty: Pure read expression that returns true when a list has zero elements.
  • List Length: Returns the number of elements in a list.
  • List Push: Appends one value to the end of a list variable.
  • List Remove: Mutating statement for removing one value from a list variable.
  • List Reverse: Pure read expression that returns a reversed copy of a list.
  • List Set: Replaces one existing element in a list variable.
  • List Shuffle: Pure read expression that returns a shuffled copy of a list.
  • List Slice: Pure read expression that returns a sliced copy of a list.