Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: README.md

Issue 2939773003: Initialize dart-lang/tuple with the tuple package at v1.0.1. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.google ('k') | lib/src/tuple.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Tuple data structure
2
3 - [Tuple2], [Tuple3]...
4
5 [![Build Status](https://travis-ci.org/kseo/tuple.svg)](https://travis-ci.org/ks eo/tuple)
6 [![Coverage Status](https://coveralls.io/repos/kseo/tuple/badge.svg?branch=maste r&service=github)](https://coveralls.io/github/kseo/tuple?branch=master)
7
8 ## Usage example
9
10 ```dart
11 const t = const Tuple2<String, int>('a', 10);
12
13 print(t.item1); // prints 'a'
14 print(t.item2); // prints '10'
15 ```
16
17 ```dart
18 final t1 = const Tuple2<String, int>('a', 10);
19 final t2 = t1.withItem1('c');
20 // t2 is a new [Tuple2] object with item1 is 'c' and item2 is 10.
21 ```
OLDNEW
« no previous file with comments | « README.google ('k') | lib/src/tuple.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698