| commit | 374ef32f1c3c587bf032fb49dccced21ef714992 | [log] [tgz] |
|---|---|---|
| author | Kwang Yul Seo <kwangyul.seo@gmail.com> | Thu Sep 24 02:06:10 2015 |
| committer | Kwang Yul Seo <kwangyul.seo@gmail.com> | Thu Sep 24 02:09:07 2015 |
| tree | fca47a95c46ea13d5edbca046afa9f7115cf7bb5 | |
| parent | 95d3db956519400f29134dcee35fbcfc5bb93ada [diff] |
Add CHANGELOG.md.
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.