Git Product home page Git Product logo

Comments (9)

lstrojny avatar lstrojny commented on June 22, 2024

Reason is, that depending on the Traversable implementation passed to map() I don't necessary know how to create the same Traversable (obviously). The reasons for "always return an array" are simplicity and consistency.

from functional-php.

lstrojny avatar lstrojny commented on June 22, 2024

That said, if you have a good idea how to change that behavior, I would be very interested.

from functional-php.

morrisonlevi avatar morrisonlevi commented on June 22, 2024

Is there a reason you would have to return the same kind of Traversable?

from functional-php.

lstrojny avatar lstrojny commented on June 22, 2024

That’s true, could be anything like an ArrayIterator. But that would only add runtime costs so I am not sure how useful it would be. Also given that the PHP APIs like array_keys() and so on take, well, arrays, also returning arrays feels like the lowest common denominator.

from functional-php.

morrisonlevi avatar morrisonlevi commented on June 22, 2024

Here is a simple example that illustrates why returning an iterator performs better for some uses; admittedly I am not sure if the example is perfectly compatible with this repo but you should understand it:

$data = new ArrayIterator(range(0, 1000)); //realistically obtained from somewhere else.
limit(map($data, function($value) { return 2 * value;}), 4);

If you return a lazy iterator you only have to map 4 values; if you return an array you have to map all 1000 values and then limit the top 4.

To be clear, I'm not arguing that you should change, I was mostly curious why you didn't take this approach as most functional languages use lazy evaluation for their utility functions like this.

from functional-php.

lstrojny avatar lstrojny commented on June 22, 2024

Very good example and I agree there are cases where it would work better. What Functional PHP could offer is set of functions under a different namespace that always returns iterators. Let me think a little more about it, any input is of course appreciated and thanks for the discussion so far.

from functional-php.

igorw avatar igorw commented on June 22, 2024

FYI there is also nikic/iter that always returns lazy iterators.

from functional-php.

lstrojny avatar lstrojny commented on June 22, 2024

Yep, a very nice library.

from functional-php.

lstrojny avatar lstrojny commented on June 22, 2024

Closing issue for now.

from functional-php.

Related Issues (20)

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.