The Create collection operator generates a list of objects. All objects must be of the same type.
The return value of the Select item by ID operator is the item that has a certain ID in a list. The first parameter this operator requires is the list from which an item is to be selected. The second parameter for this operator is the ID (key) of the required item.
The return value of the Select item by position operator is the item that is in a certain position in a list. The operator must have two incoming connections, with the first required parameter representing the item list and the second its position. The outgoing connection then returns the item at this position.
The operator converts a collection into a string separated by line feed.
Retrieves the number of items in a collection (list, data series) of objects of the same type and outputs them as integers.
Creates a new collection (list, data series) of objects of the same type from two individual collections of objects of the same type. The new collection contains all objects while maintaining the original order. The objects of the first collection start the order.
Determines the intersection of two lists. For example, if one list contains the numbers 10, 113, and 127, and a second list contains the numbers 1 and 127, the operator returns the number 127. The operator can be used for lists of all data types.
The operator checks whether a collection is valid.