Referential transparent lazy composition.
npm i --save @shammasov/lazy-compose
Abstract
Композиция функций это чистая функция, которая зависит только от аргументов. Таким образов композируя одни и те же функции в одинаковом порядке мы должны получить идентичную фукнцию .
Motivation
Частично вопрос идентичности композиций можно решить мемоизацией аргументов. Однако популярные реализации композиции функций не решают вопроса ассоциативной идентичности композиции.
кроме этого, рекурсивная реализация функциональной композиции создаёт оверхед при создании дополнительных элементов стека вызовов. При вызове композиции 5-ти и более функции это хорошо заметно.
Solution
Create monoid (or Semigroppoid & Category) in terms of fantasy-land for function composition. Laws:
composea, composeb, c === composecomposea, b, c // associativity composea, identity === a //right identitycomposeidentity, a === a //left identity
Use cases
-
Advantages of using with redux mapStateToProps and selectors. Because composition of same function returns the same function
-
Lens composition. You can create the same lenses by different composition ways. You can calculate lenses on a fly with result function equality. In this example I memoize lens constructor to return the same functions for same arguments
console.logcomposelensC, lensAB === composelensC, lensB, lensA -
Memoized react callbacks directly composable with dispatch. In the following example elements of the list will not rerender with out changing id
// constant - returns memoized identity function for an argument// just like React.useCallbackimport compose constant from './src/lazyCompose'const List = dispatch datadata -
Lazy composition of react components with no extra HOCs. lazy composition folds plain list of functions, with no additional closures
import memoize mergeRight from 'ramda'import constant compose from './src/lazyCompose'const defaultProps =const withState =const Component = value label ...props))<label >label : value</label>const withCounter =const Counter = -
Lazy Monads, where map - is a binary lazy composition, with possibility of strict equality implementation