We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a new Range type that would enable easy and consistent iteration over number ranges. The exact design is TBD, but the minimal requirements are:
Range
int
..
..<
a..b
a..<b
Iterable
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a new
Range
type that would enable easy and consistent iteration over number ranges. The exact design is TBD, but the minimal requirements are:int
type are supported, possibly other integer, or even numeric types...
and..<
operators:a..b
constructs a range where both ends are included.a..<b
constructs a range where right end is excluded.Iterable
trait.The text was updated successfully, but these errors were encountered: