CoCoA:ConcatLists

From ApCoCoAWiki
Revision as of 10:02, 24 October 2007 by XMLBot (talk | contribs) (pushing XML rev. 1.46, again)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ConcatLists

concatenate a list of lists

Description

This function takes a list whose components are lists and

returns the concatenation of these components.

Example

  L := [[1,2],[<quotes>abc</quotes>,<quotes>def</quotes>],[3,4]];
  ConcatLists(L);
[1, 2, <quotes>abc</quotes>, <quotes>def</quotes>, 3, 4]
-------------------------------

Syntax

ConcatLists([L_1:LIST,...,L_n:LIST]):LIST

Concatenation

Concat

   <type>list</type>