this post was submitted on 11 Oct 2025
283 points (96.1% liked)

Programmer Humor

26913 readers
968 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

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] bss03@infosec.pub 2 points 1 week ago (1 children)

http://blog.sigfpe.com/2006/08/you-could-have-invented-monads-and.html

It's a "programmable semicolon" or "decorated-function composition". I think most people that are confused about it, are trying to make it be more meaningful than it is. Haskell (?) just grabbed a math name so they'd have one word for it, because it's a useful class name there.

[–] balsoft@lemmy.ml 2 points 1 week ago

It’s a “programmable semicolon” or “decorated-function composition”

"programmable semicolons" is wrong, you can have that without Monads, and in fact Haskell has a do-notation for Applicative. "decorated function composition" is a bit vague, I think I see what you mean but it's not too helpful.

It's just an interface for a generic type that requires two specific functions to be implemented. Understanding why it is so useful is the tricky part.