| commit | 6aa35e5b8ba95a639def30310deadc88efa382d3 | [log] [tgz] |
|---|---|---|
| author | Kwang Yul Seo <kwangyul.seo@gmail.com> | Thu Sep 24 01:42:02 2015 |
| committer | Kwang Yul Seo <kwangyul.seo@gmail.com> | Thu Sep 24 02:01:40 2015 |
| tree | 49cda22756b2831479c7d9efeb37eee4fa7b75a2 | |
| parent | 8b72ed957cb73d7d5a2d08a5c422e07c027478b4 [diff] |
Add me to AUTHROS.
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.