Changes between Version 119 and Version 120 of IR2
- Timestamp:
- 06/04/21 10:01:41 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IR2
v119 v120 423 423 === `seq.cvh` === 424 424 425 The domain of `$seq<T>` consists of all finite sequences of values of type `T`. 426 425 427 {{{ 426 428 <T> $int $seq_length( $seq<T> a ); // length of a … … 439 441 === `set.cvh` === 440 442 443 The domain of `$set<T>` consists of all finite sets of values of type `T`. 444 445 441 446 {{{ 442 447 <T> $int $set_size( $set<T> s ); // number of elements in s … … 452 457 453 458 === `map.cvh` === 459 460 The 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 454 462 455 463 {{{
