From 58fc8a8f38ef68cabe7b41a49328bedffd96999d Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 24 Jul 2018 13:12:29 +0300 Subject: [PATCH] Create Currying.md --- glossary/Currying.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 glossary/Currying.md diff --git a/glossary/Currying.md b/glossary/Currying.md new file mode 100644 index 000000000..d401afdb3 --- /dev/null +++ b/glossary/Currying.md @@ -0,0 +1,4 @@ +### Currying + +Currying is a way of constructing functions that allows partial application of a function's arguments. +Practically, this means that a function is broken down into a series of functions, each one accepting part of the arguments.