tree: 38b8271404b5e99419bf2f56effdf210abcb5256 [path history] [tgz]
  1. lib/
  2. analysis_options.yaml
  3. AUTHORS
  4. BUILD.gn
  5. CHANGELOG.md
  6. LICENSE
  7. pubspec.yaml
  8. README.md
tuple/README.md

Dart Pub package publisher

A library providing a tuple data structure.

Usage example

const t = Tuple2<String, int>('a', 10);

print(t.item1); // prints 'a'
print(t.item2); // prints '10'
const t1 = Tuple2<String, int>('a', 10);
final t2 = t1.withItem1('c');
// t2 is a new [Tuple2] object with item1 is 'c' and item2 is 10.