nex3 / tuple

Tuple data structure for Dart

Home Page:https://pub.dartlang.org/packages/tuple

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tuple data structure

  • [Tuple2], [Tuple3]...

Build Status Coverage Status

Usage example

const t = const Tuple2<String, int>('a', 10);

print(t.item1); // prints 'a'
print(t.item2); // prints '10'
final t1 = const 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

Tuple data structure for Dart

https://pub.dartlang.org/packages/tuple

License:BSD 2-Clause "Simplified" License


Languages

Language:Dart 95.5%Language:Shell 4.5%