Files
30-seconds-of-code/glossary/Functor.md
Robert Mennell fb4547b4f1 Update Functor.md
2018-07-24 10:29:17 -07:00

286 B

Functor

A Functor is a data type common in functional programming that impliments a method map. The map method takes a function and applies it to the data in the Functor, returning a new instance of the Functor with the result.

JavaScript Arrays are an example of Functor.