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

Side by Side Diff: README.md

Issue 954703004: Update project to match OSS template (Closed) Base URL: git@github.com:dart-lang/typed_data.git@master
Patch Set: 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 typed data lists. 1 # Helper libraries for working with typed data lists.
2 2
3 The `typed_data` package contains utility functions and classes that makes worki ng with typed data lists easier. 3 The `typed_data` package contains utility functions and classes that makes worki ng with typed data lists easier.
4 4
5 ## Using 5 ## Using
6 6
7 The `typed_data` package can be imported as 7 The `typed_data` package can be imported as
8 8
9 import 'package:typed_data/typed_data.dart'; 9 import 'package:typed_data/typed_data.dart';
10 10
11 ## Typed buffers: Growable typed data lists 11 ## Typed buffers: Growable typed data lists
12 12
13 Typed buffers are contains growable lists backed by typed arrays. 13 Typed buffers are contains growable lists backed by typed arrays.
14 These are similar to the growable lists returned by `new List()`, 14 These are similar to the growable lists returned by `new List()`,
15 but stores typed data like a typed data list. 15 but stores typed data like a typed data list.
16
17 ## Features and bugs
18
19 Please file feature requests and bugs at the [issue tracker][tracker].
20
21 [tracker]: https://github.com/dart-lang/typed_data/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