entao_range 1.0.2 copy "entao_range: ^1.0.2" to clipboard
entao_range: ^1.0.2 copied to clipboard

open range and close range.

Features #

Open and closed int range.

Getting started #

for (int i in 0.to(10)) {
  print(i);
}
print(0.to(10, step: 2));
print(0.until(10, step: 2));
print(10.downTo(0, step: -2));
print(10.downUntil(0, step: -2));

CloseRange r = 1.to(10);
print(r);
OpenRange r2 = 1.until(10);
print(r2);
0
likes
0
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

open range and close range.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on entao_range