Changes between Version 8 and Version 9 of StreamType
- Timestamp:
- 04/11/12 05:05:02 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StreamType
v8 v9 24 24 print t 25 25 }}} 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. 27 27 * 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)". 29 29 * Streams can be applied to both primitive and complex types such as "int*" and "Shape*". 30 30 * Streams are portable between backends, whereas .NET's IEnumerable<of> and JVM's Iterable<of> are not.