Update CHANGELOG.md and bump the version to 1.0.0.
2 files changed
tree: e295b20a9e8d971f6e1422f48489a43a82c3424a
  1. lib/
  2. test/
  3. .gitignore
  4. AUTHORS
  5. CHANGELOG.md
  6. LICENSE
  7. pubspec.yaml
  8. README.md
README.md

Tuple data structure

  • [Tuple2], [Tuple3]...

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.