Slashdot Mirror


User: catamorphism

catamorphism's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:I heard this mentioned on some previous article on Purely Functional Data Structures · · Score: 2, Interesting

    See Simon Peyton-Jones et al's paper "Improving the world's most popular functional programming language: user-defined functions in Excel". (It's just a coincidence that he works for Microsoft Research, really!)

  2. Re:Laziness Bad on Purely Functional Data Structures · · Score: 1

    That's why some researchers in the field of lazy functional language have developed techniques for "optimistic evaluation" -- basically, the compiler uses strict evaluation until it's determined that the object it's evaluating can't be evaluated strictly (for example, in the case of a conceptually infinite list). You still get lazy semantics, and you have most of the performance benefits of a strict language. See the work of Robert Ennals and Jan-Willem Maessen.