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.
