isabella232 / tuple.dart

A library providing a tuple data structure

Home Page:https://pub.dev/packages/tuple

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A library providing a tuple data structure

https://pub.dev/packages/tuple

License:BSD 2-Clause "Simplified" License


Languages

Language:Dart 100.0%