这个技术叫什么:a(b(x)) -> f(a, b)(x)?

What is this technique called: a(b(x)) -> f(a, b)(x)?

我正在尝试为函数取一个合适的名称 f:

a(b(c(x))) == f(c, b, a)(x) 

这种技术叫什么?

我想我找到了答案,它是函数组合:

https://en.wikipedia.org/wiki/Function_composition

所以我会给我的函数起一个名字compose