What are the core concepts in functional programming?

后端 未结 6 822
一生所求
一生所求 2020-12-22 17:04

In object-oriented programming, we might say the core concepts are:

  1. encapsulation
  2. inheritance,
  3. polymorphism

What would that be

6条回答
  •  北海茫月
    2020-12-22 17:31

    Abstraction, the process of making a function by parameterizing over some part of an expression.

    Application, the process of evaluating a function by replacing its parameters with specific values.

    At some level, that's all there is to it.

提交回复
热议问题