Re: [Haskell-cafe] Data.Map and strictness (was: Is Haskell aGoodChoice for WebApplications?(ANN: Vocabulink))

2009-05-07 Thread Daniel McAllansmith
On Fri, 08 May 2009 00:30:34 Claus Reinke wrote: > > seq something like size map that will force a traversal of the entire > > tree, and ensure that the result is actually demanded, .. > > (Not tested) > > and not recommended, either, I'm afraid!-) > > |> Actually, I'm unsure how to fix this. For a

Re: [Haskell-cafe] Data.Map and strictness (was: Is Haskell aGoodChoice for WebApplications?(ANN: Vocabulink))

2009-05-07 Thread Claus Reinke
seq something like size map that will force a traversal of the entire tree, and ensure that the result is actually demanded, .. (Not tested) and not recommended, either, I'm afraid!-) |> Actually, I'm unsure how to fix this. For an expression like this: |> |>Data.Map.delete key map |> |>