listappendlist
Listappendlist is a term used in discussions of list processing to denote the operation of appending one list to another. The operation combines two lists into a single list by placing the elements of the second list after the elements of the first. It can be performed in-place, mutating the first list, or it can produce a new list without altering the inputs.
In the in-place variant, the first list is extended by adding each element of the second list
Complexity considerations are similar to other list operations. The time cost is proportional to the total
Relation to existing terminology varies by language. In many languages, the in-place version corresponds to an
Examples: given A = [1, 2] and B = [3, 4], in-place listappendlist(A, B) yields A = [1, 2,
Notes: the term is informal and not standardized across programming languages. See also: extend, concatenate, append,