Changes between Version 1 and Version 2 of ArrayIndexing
- Timestamp:
- 03/01/06 17:00:19 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ArrayIndexing
v1 v2 25 25 This doesn't even require any new syntax, because {{{.#}}} is a valid infix operator. 26 26 27 == Use of '!' == 27 28 29 A more useful definition of '!' would be 30 31 f ! x = x `seq` f x 32 33 where '!' has the exact same fixity as function application. so 34 35 foo !x !y 36 37 could be used to call foo with x and y evaluated strictly beforehand. 38 39 40 41 42 43 44 45
