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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.google ('k') | lib/src/tuple.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..61c0db161de0fb13c21227e0699fd1a07425df33
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+# Tuple data structure
+
+- [Tuple2], [Tuple3]...
+
+[![Build Status](https://travis-ci.org/kseo/tuple.svg)](https://travis-ci.org/kseo/tuple)
+[![Coverage Status](https://coveralls.io/repos/kseo/tuple/badge.svg?branch=master&service=github)](https://coveralls.io/github/kseo/tuple?branch=master)
+
+## Usage example
+
+```dart
+const t = const Tuple2<String, int>('a', 10);
+
+print(t.item1); // prints 'a'
+print(t.item2); // prints '10'
+```
+
+```dart
+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.
+```
« 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