Currying Functions Flashcards

1
Q

What is currying?

A

Currying is a transformation of functions that translates a function from callable as f(a, b, c) into callable as f(a)(b)(c).

Currying doesn’t call a function. It just transforms it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly