| OLD | NEW |
| 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 |
| OLD | NEW |