From fa4848d03ffa60f5e94d553f61cd4edbf63ba6f6 Mon Sep 17 00:00:00 2001 From: Phil Krylov Date: Fri, 23 Oct 2020 14:17:09 +0300 Subject: [PATCH] Remove wrong statement on HOFs in Python See the discussion on https://github.com/dry-python/functional-jargon-python/commit/926a6f06bc134d39f8008dbbe16e63fccff9da6a#r43380159 --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 3958677..a9e41d6 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,6 @@ There is a little difference between __arguments__ and __parameters__: ## Higher-Order Functions (HOF) A function that takes a function as an argument and/or returns a function, basically we can treat functions as a value. -In Python every function/method is a Higher-Order Function. The functions like `reduce`, `map` and `filter` are good examples of __HOF__, they receive a function as their first argument. ```python