Giter Club home page Giter Club logo

Comments (7)

rossberg avatar rossberg commented on May 21, 2024 1

We don't use verbs for other iterators, like keys, vals, entries -- I suppose nouns are established practice because they read more naturally with for ... in X. Probably for the same reason, range is more commonly used, AFAICT.

from motoko-base.

kritzcreek avatar kritzcreek commented on May 21, 2024

Here are the trait names Rust uses for these (they also have Syntax for ranges, but maybe the names are helpful anyway):

1..2;   // std::ops::Range
3..;    // std::ops::RangeFrom
..4;    // std::ops::RangeTo
..;     // std::ops::RangeFull
5..=6;  // std::ops::RangeInclusive
..=7;   // std::ops::RangeToInclusive

from motoko-base.

nomeata avatar nomeata commented on May 21, 2024

Haskell says enumFromTo for the inclusive variant; so maybe Nat.iterFromTo and Nat.iterFromUntil? (Not crystal clear)

from motoko-base.

crusso avatar crusso commented on May 21, 2024

And where should these live? In each integral type?

from motoko-base.

crusso avatar crusso commented on May 21, 2024

Or can we write a generic one that takes a module (perhaps with min an max values) and does the right thing now?

from motoko-base.

rossberg avatar rossberg commented on May 21, 2024

Per @nomeata's earlier suggestion, I think it's appropriate if they live in each integral type's module.

As for naming, I'd keep range as is and add rangeBelow for the exclusive version perhaps? Is that good English?

Not sure we desperately need all the open variants.

from motoko-base.

nomeata avatar nomeata commented on May 21, 2024

enumUntil and enumUpTo?

Should it really be range, or do we want a method name that sounds like a verb?

from motoko-base.

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.