Wiki

Changes between Version 8 and Version 9 of StreamType

Show
Ignore:
Timestamp:
04/11/12 05:05:02 (12 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StreamType

    v8 v9  
    2424        print t 
    2525}}} 
    26  * The general form of a stream type is "foo*" where "foo" is the element type. 
     26 * The general form of a stream type is Foo*" where "Foo" is the element type. 
    2727 * The "*" suffix can be thought of as "zero or more". 
    28  * The type "foo*" can be read as "foo stream". 
     28 * The type "Foo*" can be read as "Foo stream" or "stream of Foo(s)". 
    2929 * Streams can be applied to both primitive and complex types such as "int*" and "Shape*". 
    3030 * Streams are portable between backends, whereas .NET's IEnumerable<of> and JVM's Iterable<of> are not.