Changes between Version 6 and Version 7 of ConcurrencyExtensions


Ignore:
Timestamp:
06/10/14 14:22:11 (12 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConcurrencyExtensions

    v6 v7  
    2525}}}
    2626
     27== New expressions ==
     28
     29Some new expressions will make it easy to create new ranges and domains using range and domain literals.
     30
     31The range literal
     32{{{
     33lo..hi
     34}}}
     35where `lo` and `hi` are expressions of integer type, represents the same range as `$range_regular(lo, hi, 1)`.  The range literal
     36{{{
     37lo..hi#step
     38}}}
     39where all three identifiers signify expressions of integer type, represents the same range as `$range_regular(lo, hi, step)`.
     40
     41The domain literal
     42{{{
     43{ r1, r2, ...}
     44}}}
     45where `r1`, `r2`, ..., are all expressions of range type, represents the domain `$domain_rectangular(r1, r2, ...)`.
    2746
    2847== New statements ==