Edward Kmett - Why Haskell?

December 13, 2021
Edward Kmett spoke to us after delivering his keynote at Functional Conf 2019 and discussed why he chose Haskell
Transcript

If I have to say what Haskell in particular when I talk about functional programming, why Haskell it comes down to the idea that there's a lot of languages that have been toying with the idea of adding immutable data structures, you have data structure is you're not allowed to change.

You construct an object. And if you have a rectangle and you want to build a rectangle that's slightly wider or something like that, instead of changing the width field of the rectangle, you give me a new rectangle that has the new width.

So once you've allowed for this immutable form of data structure, it turns out that most of what people get in the undergraduate computer science curriculum around amortized analysis of data structures and whatnot is just wrong.

We learn that you can do a bunch of cheap steps in order to pay for one big, expensive step. You can amortize the cost of a big, expensive step later by charging it to earlier things that you've got away with doing so cheap. So, on average, it's cheap. But in a world where the old data structure is still lying around, that doesn't work anymore, because I can make you stop right before you do the big, expensive step and make you pay that cost over and over and over again.

So your worst case cost becomes your amortized cost. And a lot of folks who, even when they start thinking about this
languages like C Sharp and all these other languages, start picking up immutable data structures. They don't really think through the consequences of this on just the raw complexity, just the cost of running all of your algorithms and in Haskell we have laziness and laziness turns out to be enough.

It's a limited form of mutation that you can still reason about as if there wasn't one. And it's enough to recover the power of amortized analysis to actually not have your worst case be your amortized case. You can actually amortize,
but it requires you to kind of like redo everything you know about computer science from undergrad.

And so if you did an actual computer science degree, then there's a lot of relearning or something like that. That might be a bit uncomfortable for folks, but it's a set of consequences of literally just wanting there to be some data structures that I don't mutate, because because then I can easily spread them across multiple cores or multiple machines.

And so if you're trying to work at scale, this is a thing that really should be embedded down in the core of the curriculum and isn't.

Don't miss out on Functional Conf 2022

REGISTER NOW

Leave a Reply

Your email address will not be published.

FOLLOW
US
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram