On Fri, 2006-09-29 at 11:02 +0200, Christian Maeder wrote: > Map (and Set) use (unboxed) Int internally. So bigger Maps and Sets are > not possible.
Furthermore, unlike lists which can be bigger than can fit in memory, Data.Map and .Set are strict structures, so you can never have more than 2^32 elements on a 32bit machine, or 2^64 elements on a 64bit machine. Duncan _______________________________________________ Glasgow-haskell-users mailing list [email protected] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
