├── CHANGELOG.md ├── CONTRIBUTION.md ├── LICENSE ├── README.md ├── TEMPLATE.md └── catalog ├── compose-nested-functions.md ├── extract-function.md ├── name-lambda.md ├── name-value.md ├── rearrange-function-parameters.md ├── recursion-to-filter.md ├── recursion-to-map.md ├── recursion-to-reduce.md ├── reduce-to-map-and-filter.md └── tail-call-optimise-recursion.md /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/README.md -------------------------------------------------------------------------------- /TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/TEMPLATE.md -------------------------------------------------------------------------------- /catalog/compose-nested-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/compose-nested-functions.md -------------------------------------------------------------------------------- /catalog/extract-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/extract-function.md -------------------------------------------------------------------------------- /catalog/name-lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/name-lambda.md -------------------------------------------------------------------------------- /catalog/name-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/name-value.md -------------------------------------------------------------------------------- /catalog/rearrange-function-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/rearrange-function-parameters.md -------------------------------------------------------------------------------- /catalog/recursion-to-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/recursion-to-filter.md -------------------------------------------------------------------------------- /catalog/recursion-to-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/recursion-to-map.md -------------------------------------------------------------------------------- /catalog/recursion-to-reduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/recursion-to-reduce.md -------------------------------------------------------------------------------- /catalog/reduce-to-map-and-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/reduce-to-map-and-filter.md -------------------------------------------------------------------------------- /catalog/tail-call-optimise-recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomphp/functional-refactorings/HEAD/catalog/tail-call-optimise-recursion.md --------------------------------------------------------------------------------