List Functions
Functions for creating, manipulating, and transforming lists.
- List.AccumulateAccumulates a result by applying a function to each item in a list, starting from an initial seed value.
- List.CombineMerges multiple lists into a single list.
- List.ContainsReturns true if a list contains a specified value.
- List.ContainsAnyReturns true if a list contains any of the values in another list.
- List.CountReturns the number of items in a list.
- List.DistinctReturns a list with duplicate values removed.
- List.FirstReturns the first item in a list, or a default value if the list is empty.
- List.GenerateGenerates a list of values using an initial value, a condition, a next function, and an optional selector.
- List.LastReturns the last item in a list, or a default value if the list is empty.
- List.RangeReturns a subset of items from a list starting at a given offset.
- List.RemoveItemsRemoves all occurrences of specified values from a list.
- List.SelectReturns items from a list that match a condition.
- List.SortSorts the items in a list according to the specified criteria.
- List.SumReturns the sum of all items in a list.
- List.TransformApplies a function to each item in a list and returns the results.