Re: Arithmetical series
Scott Turner <[email protected]> Thu, 5 May 2005 11:11:15 -0400
| Newsgroups | gmane.comp.lang.haskell.hugs.user |
|---|---|
| Message-ID | <[email protected]> |
On 2005 May 05 Thursday 10:27, Paqui Lucio wrote: > Please, what is the exactly meaning of [n,m..m]? > or where can I find a precise explanation obout this arithmetical series? [n,m..m] is defined as equivalent to the function enumFromThenTo, which is specified in section 6.3.4 of the Haskell 98 report. http://www.haskell.org/onlinereport/basic.html#sect6.3.4