| commit | 761ee4e1bbd3e9fe5283883f5eccd389d18bf7b8 | [log] [tgz] |
|---|---|---|
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Sat Jan 31 21:12:08 2026 -0800 |
| committer | GitHub <noreply@github.com> | Sat Jan 31 21:12:08 2026 -0800 |
| tree | 7ea821e37fd05dff730bd8ae51ac47af679e58ec | |
| parent | 7829ccc527ebe5d69b8b9b9db1aadf9d889fa5d0 [diff] |
Bump actions/checkout from 5.0.0 to 6.0.2 (#68) Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/08c6903cd8c0fde910a37f88322edcfb5dd907a8...de0fac2e4500dabe0009e67214ff5f5447ce83dd) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> 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.