this post was submitted on 27 Mar 2025
474 points (95.1% liked)
Programmer Humor
22179 readers
2381 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It is, although I'm not sure it's complete. A list is one kind of monad, despite working like non-mutable linked lists would in any other language. They just happen to behave monadically, providing an obvious and legal interpretation of the monad functions. Going off of OP you might think monads are all
Maybe
.I will say that the concept is overhyped in at this point, at least in Haskell, and there's a lot of monads available that do what plain functional code could but worse.