tuple 2.0.0 copy "tuple: ^2.0.0" to clipboard
tuple: ^2.0.0 copied to clipboard

outdated

Tuple data structure

ci

Usage example #

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.
479
likes
0
points
1.36M
downloads

Publisher

verified publishergoogle.dev

Weekly Downloads

Tuple data structure

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

quiver

More

Packages that depend on tuple