itertools 0.1.0 copy "itertools: ^0.1.0" to clipboard
itertools: ^0.1.0 copied to clipboard

outdated

Package for advanced simple and easy work with Dart iterators

itertools · build status #

Simple package for easy work with Dart iterators just like Python itertools.

Provide methods / functions:

  • zip2/zip3/etc
  • chain
  • count
  • enumerate / mapIndexed
  • and other helpers

Pub dev

Documentation

Issue tracker

Usage #

import 'package:itertools/itertools.dart';

void main() {
  print(zip2(['H', ',', 'a', 'l'], ['i', ' ', 'l', '!'])
      .map((e) => e.item1 + e.item2)
      .join());
  // output: Hi, all!
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

5
likes
0
pub points
24%
popularity

Publisher

unverified uploader

Package for advanced simple and easy work with Dart iterators

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

tuple

More

Packages that depend on itertools