Giter Club home page Giter Club logo

garp-functional's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

garp-functional's Issues

Validate function arguments

Not every function that accepts a callable arguments validates it as such.
It would make the library a little more robust to throw an InvalidArgumentException for non-callable arguments in those cases.

No issue, this lib is awesome

I recently moved to PHP from JS at my work and I was searching for something like https://github.com/ramda/ramda

Thanks a lot for this, your lib has the best usage and UX from all the functional libs I saw until now

Don't let this die, I'll use it a lot and will try to open a PR if i find something to add here :D

prop doesn't call isset before accessing a property

The following object will fail when passed to prop():

$arrayAccessObj = new class implements ArrayAccess {
	protected $_data = [];
	public function offsetExists($offset) {
		return isset($this->_data[$offset]);
	}
	public function offsetGet($offset) {
		throw new Exception('Don\'t call get when offset is not set');
	}
	public function offsetSet($offset, $value) {}
	public function offsetUnset($offset) {}
};

concat_with is not curried correctly

It incorrectly passes array_slice(func_get_args(), 1) to partial when given <= 2 arguments.

This would be the correct call:

        return call_user_func(
            partial,
            concat_with,
            ...func_get_args()
        );

This needs a test.

Reduce example in docs doesn't work because `f` namespace shortcut doesn't always work

So, this is a really cool issue. If we get the reduce example:

$sum = f\reduce('f\add', 0, $numbers); // 90

this will explode:

PHP Warning:  array_reduce() expects parameter 2 to be a valid callback, function 'f\add' not found or invalid function name in /home/worms/Documents/phpplayground/vendor/grrr-amsterdam/garp-functional/library/Garp/Functional/Reduce.php on line 21

and that happens because PHP doesn't translate 'f' inside the string to 'Garp\Functional'. You either have to send the whole namespace:

$sum = f\reduce('Garp\Functional\add', 0, $numbers); // 90

Or do a nifty ugly little workaround like I did:

$f = 'Garp\Functional\\';
$sum = f\reduce($f.'add', 0, $numbers); // 90

So this opens up 2 issues:

  1. (Solved in PR: #5) We need to fix the docs example because it doesn't work and may cause confusion.

  2. Is there a better way to send functions inside renamed namespaces as parameters?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.