ConcatenateLists

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Left> & <Right>
Associationscom.livecode.list
Summary

Concatenate two lists. LeftList:The List to go at the start of the resulting list. RightList:The List to go at the end of the resulting list.

Example
variable tVar
put ["a", "b"] & ["c", "d"] into tVar
-- tVar contains ["a", "b", "c", "d"]
Values
NameTypeDescription
return

A newly created List built from LeftList and RightList.

Description

Returns a newly-created list consisting of the elements of LeftList followed by the elements of RightList.

Tagslists