| commit | 7cd6ea9c69071310aea6c4e9bd4a9b824033009d | [log] [tgz] |
|---|---|---|
| author | Kwang Yul Seo <kwangyul.seo@gmail.com> | Tue Nov 10 01:40:40 2015 |
| committer | Kwang Yul Seo <kwangyul.seo@gmail.com> | Tue Nov 10 01:40:40 2015 |
| tree | da3391558d64b1727fe0cd98fbb3046466569f64 | |
| parent | b0655bc75c5a3290322e5853accca013edfa564d [diff] | |
| parent | 0a8520550f55d8f440766a9c7506a0567a158780 [diff] |
Merge pull request #1 from srawlins/complete-changelog Complete changelog
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.