Live data from Hacker News

Hashtables, a new Haskell library for fast mutable hash tables

gregorycollins.net

11–13 of 13 posts

Re: Hashtables, a new Haskell library for fast mutable hash tables

#11

mutability in Haskell? I thought Haskell was purely functional i.e. lazy and immutablility are foundational. Can someone clarify please?

Haskell doesn't prevent side effects. Otherwise, you wouldn't be able to do I/O. Instead, Haskell requires you to be explicit about side effects through Monads.

I think about it this way: imperative languages allow side effects by default, but allow you to write side-effect free code. Purely functional languages don't use side-effects by default, but allow you to write code with side-effects.

Re: Hashtables, a new Haskell library for fast mutable hash tables

#12
post #6

Earlier quoted context omitted.

care to elaborate?

Space leaks. Also, unpredictable program behavior (which nearly destroys its usefulness in embedded beyond what perhaps Galois has been doing).

For what is worth, Edward Yang is writing an excellent series on space leaks in Haskell:

http://blog.ezyang.com/2011/05/space-leak-zoo/

The series require Haskell knowledge but this summary is fairly readable if you have a good grounding on programming language theory and implementation.

Re: Hashtables, a new Haskell library for fast mutable hash tables

#13

mutability in Haskell? I thought Haskell was purely functional i.e. lazy and immutablility are foundational. Can someone clarify please?

You can escape the purely functional part (to do IO for example). This library does however provide 2 implementations: one in the IO monad and one in the ST monad.

If you use the IO monad one then you can do whatever side effects you want. It's up to you to use the rest of the code in a responsible way (which means that you can write code C style if you want).

The ST monad version is quite nice, it lets you use the hash table as if it was modifiable, but only inside the ST monad. Looking at it from the outside, it's still purely functional, and within the ST monad you're restricted to purely functional programming and the facilities provided by the ST monad. This makes it a safe alternative when you want to use a hash table for performance reasons but still want to limit what side effects that can be used.

Post reply on HN