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

Side by Side Diff: README.md

Issue 956443003: Update project to match OSS template (Closed) Base URL: git@github.com:dart-lang/collection.git@master
Patch Set: Addressed review comments Created 5 years, 10 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 | « LICENSE ('k') | codereview.settings » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Helper libraries for working with collections. 1 #Helper libraries for working with collections.
2 2
3 The `collection` package contains a number of separate libraries 3 The `collection` package contains a number of separate libraries
4 with utility functions and classes that makes working with collections easier. 4 with utility functions and classes that makes working with collections easier.
5 5
6 ## Using 6 ## Using
7 7
8 The `collection` package can be imported as separate libraries, or 8 The `collection` package can be imported as separate libraries, or
9 in totality: 9 in totality:
10 10
11 import 'package:collection/algorithms.dart'; 11 import 'package:collection/algorithms.dart';
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ## Wrappers 60 ## Wrappers
61 61
62 The wrappers library contains classes that "wrap" a collection. 62 The wrappers library contains classes that "wrap" a collection.
63 63
64 A wrapper class contains an object of the same type, and it forwards all 64 A wrapper class contains an object of the same type, and it forwards all
65 methods to the wrapped object. 65 methods to the wrapped object.
66 66
67 Wrapper classes can be used in various ways, for example to restrict the type 67 Wrapper classes can be used in various ways, for example to restrict the type
68 of an object to that of a supertype, or to change the behavior of selected 68 of an object to that of a supertype, or to change the behavior of selected
69 functions on an existing object. 69 functions on an existing object.
70
71 ## Features and bugs
72
73 Please file feature requests and bugs at the [issue tracker][tracker].
74
75 [tracker]: https://github.com/dart-lang/collection/issues
OLDNEW
« no previous file with comments | « LICENSE ('k') | codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698