Coder Social home page Coder Social logo

Implement lazy cartesian product about iterum HOT 3 CLOSED

xgbuils avatar xgbuils commented on July 2, 2024
Implement lazy cartesian product

from iterum.

Comments (3)

xgbuils avatar xgbuils commented on July 2, 2024

Thinking about it, cartesian method implementation is already lazy. This method allows a finite number of iterables. These iterables can be potentially infinite. When I thought in lazy cartesian method, I thought in a product of infinite iterables. However this thing is impossible to implement because we need to know if all of iterables are empty or not to check if the iterable result is empty or not.

Then, I just have to implement cartesian method that returns an Iterum instance of Iterum instances.

from iterum.

xgbuils avatar xgbuils commented on July 2, 2024

However, the current implementation of cartesian returns values in this order:

Iterum([1, 2]).cartesian([3, 4]) /* (
    (1 3)
    (1 4)
    (2 3)
    (2 4)
) */

For consistency, I prefer:

Iterum([1, 2]).cartesian([3, 4]) /* (
    (1 3)
    (2 3)
    (1 4)
    (2 4)
) */

Because there are other methods like permutations, power, combinations, variations that could be work with infinite iterables and numbers if the first value of iterables is that variates first.

from iterum.

xgbuils avatar xgbuils commented on July 2, 2024

I also going to change cartesian method name to product.

from iterum.

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.