Skip to main content

All Questions

Tagged with
5 votes
2 answers
132 views

Bloom Filter in Haskell

I recently implemented a Bloom Filter in Haskell and, although I am not new to functional programming, I am a beginner when it comes to Haskell itself. I'll gladly take any feedback regarding the ...
Bertrand's user avatar
  • 151
2 votes
1 answer
683 views

Haskell union list implementation pt 2

This is my revision from another post ...
dopatraman's user avatar
4 votes
1 answer
3k views

List union implementation

I'm trying to implement union from the standard Data.List library. I know it's reinventing the wheel, but reimplementing ...
dopatraman's user avatar
6 votes
1 answer
5k views

Implementation of Set data type in Haskell

I'm an advanced beginner Haskell programmer. I implemented a set data type in Haskell and I wanted to find out if I made correct choices when writing it. Would there be a way to improve some of the ...
Michael Chav's user avatar