commit | 29736f25cc882b06f563002a6eabc777da6ccba6 | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Mon Jul 01 15:25:11 2024 |
committer | GitHub <[email protected]> | Mon Jul 01 15:25:11 2024 |
tree | 6591e093d0bc0bc31e16f2c5c7dc17812a5c79cb | |
parent | 7d7c741e5ae3240af251df0c4f85afc1fb378818 [diff] |
Bump dart-lang/setup-dart from 1.6.4 to 1.6.5 (#60) Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.4 to 1.6.5. - [Release notes](https://github.com/dart-lang/setup-dart/releases) - [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md) - [Commits](https://github.com/dart-lang/setup-dart/compare/f0ead981b4d9a35b37f30d36160575d60931ec30...0a8a0fc875eb934c15d08629302413c671d3f672) --- updated-dependencies: - dependency-name: dart-lang/setup-dart dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
A library providing a tuple data structure.
We consider this package to be feature complete. With Dart 3.0, users now have the ability to use Records:
Records are an anonymous, immutable, aggregate type. Like other collection types, they let you bundle multiple objects into a single object.
var record = (123, true); print('${record.$1}: ${record.$2}');
By and large, Records serve the same use cases that package:tuple
had been used for. New users coming to this package should likely look at using Dart Records instead. Existing uses of package:tuple will continue to work, however we don't intend to enhance the functionality of this package; we will continue to maintain this package from the POV of bug fixes.
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.