
13 May
2011
13 May
'11
8:48 p.m.
On Thu, May 12, 2011 at 5:50 PM, Daniel Fischer < daniel.is.fischer@googlemail.com> wrote:
Prelude Data.List> maximum [0,-1,0/0,-5,-6,-3,0/0,-2] 0.0 Prelude Data.List> minimum [0,-1,0/0,-5,-6,-3,0/0,-2] -2.0 Prelude Data.List> sort [0,-1,0/0,-5,-6,-3,0/0,-2] [-6.0,-5.0,-2.0,NaN,-3.0,NaN,-1.0,0.0]
Wow, that's the best example of NaN poison I've seen. Luke