# tuple_1 **Repository Path**: mirrors_chromium_googlesource/tuple_1 ## Basic Information - **Project Name**: tuple_1 - **Description**: No description available - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-19 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Tuple data structure - [Tuple2], [Tuple3]... [![Build Status](https://travis-ci.org/kseo/tuple.svg)](https://travis-ci.org/kseo/tuple) [![Coverage Status](https://coveralls.io/repos/kseo/tuple/badge.svg?branch=master&service=github)](https://coveralls.io/github/kseo/tuple?branch=master) ## Usage example ```dart const t = const Tuple2('a', 10); print(t.item1); // prints 'a' print(t.item2); // prints '10' ``` ```dart final t1 = const Tuple2('a', 10); final t2 = t1.withItem1('c'); // t2 is a new [Tuple2] object with item1 is 'c' and item2 is 10. ```