
append_list(+LCOL, ++Index, +List)

   Append a List to the internal list identified by Index.

Arguments
   LCOL                A list collection
   Index               A ground term or number
   List                A list of terms or variables

Type
   library(list_collection)

Description
Complexity O(|List|).

Modes and Determinism
   append_list(+, ++, +) is det

Exceptions
     5 --- LCOL is not a list collection.
     5 --- Index is not a number or is out of range.
     5 --- Index is not ground.
     1 --- List identified by Index is closed.

See Also
   append_element / 3, prefix_element / 3, prefix_list / 3
