Changes between Version 119 and Version 120 of IR2


Ignore:
Timestamp:
06/04/21 10:01:41 (5 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IR2

    v119 v120  
    423423=== `seq.cvh` ===
    424424
     425The domain of `$seq<T>` consists of all finite sequences of values of type `T`.
     426
    425427{{{
    426428<T> $int $seq_length( $seq<T> a ); // length of a
     
    439441=== `set.cvh` ===
    440442
     443The domain of `$set<T>` consists of all finite sets of values of type `T`.
     444
     445
    441446{{{
    442447<T> $int $set_size( $set<T> s ); // number of elements in s
     
    452457
    453458=== `map.cvh` ===
     459
     460The domain of `$map<K,V>` consists of all finite sets M of ordered pairs (k,v), where k is in K and v is in V, and satisfying: for all k in K there is at most one v in V such that (k,v) is in M.
     461
    454462
    455463{{{