Changes between Version 1 and Version 2 of DataStructures


Ignore:
Timestamp:
07/03/14 07:30:05 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DataStructures

    v1 v2  
    99
    1010== Sequences ==
     11
     12This is an abstract datatype for an immutable (functional) sequence of elements of the same type.
    1113
    1214New type: `$seq`.  Functions:
     
    5052$seq $seq_sub($seq v, int start, int stop);
    5153
     54/* Returns the concatenation of the two sequences */
     55$seq $seq_concat($seq s1, $seq s2);
     56
    5257}}}
    5358