Insert in List (vuo.list.insert)

Adds an item to a list.

Position is the location in the list where the item should be inserted. The item can be inserted at the beginning of the list, at the end of the list, or between two items in the list.

For example, if the input list contains 2 items:

If Position is less than 1, then the item is inserted at the beginning of the list. If Position is greater than the number of items in the list, then the item is inserted at the end of the list.

Keywords: append, combine, insert, middle, place, prepend, push


Example compositions:


Back to vuo.list node set documentation.