| commit | 2eded42fdfc2dda371722d5bf817106fb9e96fe6 | [log] [tgz] |
|---|---|---|
| author | Kwang Yul Seo <kwangyul.seo@gmail.com> | Wed Sep 23 01:16:02 2015 |
| committer | Kwang Yul Seo <kwangyul.seo@gmail.com> | Wed Sep 23 01:16:02 2015 |
| tree | 04eaeb89e39c29c604e75c5698d63f78ea1aba3a | |
| parent | 46604a009669e4225045b949a5eae0ce3c22bbff [diff] |
Add .pub and doc to .gitignore.
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.