הצטרף ל-Nostr
2026-05-11 00:11:32 UTC
in reply to

:seven: on Nostr: So, if currying is constructing your functions such that (f a b c) curries to (((f a) ...

So, if currying is constructing your functions such that (f a b c) curries to (((f a) b) c) and all those internal functions are just partials waiting for application, then absorption is the opposite end of that; given a fixed arity f/3, (f a b c d) would absorb to ((f a b c) d).

I have a theory about currying and absorption in the same language.