Skip to content

Instantly share code, notes, and snippets.

View fResult's full-sized avatar

Sila Setthakan-anan fResult

View GitHub Profile
@fResult
fResult / True definition of Higher-Order Function from the Math book.md
Last active January 14, 2024 16:19
True definition of Higher-Order Function from Mathematics for Working Programmers class, by lect. Dave Rawitat Pulam

Higher-Order Functions 😡😡😡

See something from an actual Maths book.

Definition

A function is called a higher-order function if its arguments and values are allowed to be functions.
This is an important property that most good programming languages possess.
The composition and tupling operations are examples of functions that take other functions as arguments and return functions as results.