tree: fe53329d215e79f245368240df950f9dc91f96c5 [path history] [tgz]
  1. lib/
  2. .gitignore
  3. .travis.yml
  4. analysis_options.yaml
  5. AUTHORS
  6. BUILD.gn
  7. CHANGELOG.md
  8. LICENSE
  9. pubspec.yaml
  10. README.md
tuple/README.md

Build Status

Usage example

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

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