Hugo Sales e8e8000b16 Update composer dependencies пре 4 година
..
docs e8e8000b16 Update composer dependencies пре 4 година
src e8e8000b16 Update composer dependencies пре 4 година
tests e8e8000b16 Update composer dependencies пре 4 година
.editorconfig e8e8000b16 Update composer dependencies пре 4 година
.gitignore e8e8000b16 Update composer dependencies пре 4 година
.php_cs.dist e8e8000b16 Update composer dependencies пре 4 година
.phpstorm.meta.php e8e8000b16 Update composer dependencies пре 4 година
.scrutinizer.yml e8e8000b16 Update composer dependencies пре 4 година
.travis.yml e8e8000b16 Update composer dependencies пре 4 година
LICENSE e8e8000b16 Update composer dependencies пре 4 година
README.md e8e8000b16 Update composer dependencies пре 4 година
composer.json e8e8000b16 Update composer dependencies пре 4 година
phpcs.xml.dist e8e8000b16 Update composer dependencies пре 4 година
phpunit.xml.dist e8e8000b16 Update composer dependencies пре 4 година

README.md

Functional PHP: Functional primitives for PHP

Build Status

NOTE: functional-php used to come with a C extension that implemented most of the functions natively. As the performance differences weren’t that huge compared to the maintenance cost it has been removed.

A set of functional primitives for PHP, heavily inspired by Scala’s traversable collection, Dojo’s array functions and Underscore.js

  • Works with arrays and everything implementing interface Traversable
  • Consistent interface: for functions taking collections and callbacks, first parameter is always the collection, then the callback. Callbacks are always passed $value, $index, $collection. Strict comparison is the default but can be changed
  • Calls 5.3 closures as well as usual callbacks
  • All functions reside in namespace Functional to not raise conflicts with any other extension or library

Functional Comic

Installation

Run the following command in your project root:

composer require lstrojny/functional-php

Docs

Read the docs

Contributing

  1. Fork and git clone the project
  2. Install dependencies via composer install
  3. Run the tests via composer run tests
  4. Write code and create a PR

Mailing lists

Thank you