Skip to content

List

Status: Stable

documented, exercised by the test suite and/or worked examples, with no known limitations recorded.

Description

{e1, e2, ...} or List[e1, e2, ...]
    represents an ordered list of the elements ei.
List is the fundamental container head: vectors are lists, matrices are
lists of lists, and the structural operators (Part, Map, Take, Drop,
Length, ...) act on List. Elements are evaluated normally and kept in the
given order (List has no Orderless attribute). The parser writes the {...}
syntax to List, and the printer renders List[...] back as {...}.

Examples

No verified examples yet for this function.

Implementation notes

Attributes: none registered.

Implementation status

Stable — documented, exercised by the test suite and/or worked examples, with no known limitations recorded.

References