Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Helper libraries for working with typed data lists. | |
| 2 | |
| 3 The `typed_data` package contains utility functions and classes that makes worki ng with typed data lists easier. | |
| 4 | |
| 5 ## Using | |
| 6 | |
| 7 The `typed_data` package can be imported as | |
| 8 | |
| 9 import 'package:typed_data/typed_data.dart'; | |
| 10 | |
| 11 ## Typed buffers: Growable typed data lists | |
| 12 | |
| 13 Typed buffers are contains growable lists backed by typed arrays. | |
| 14 These are similar to the growable lists returned by `new List()`, | |
| 15 but stores typed data like a typed data list. | |
| OLD | NEW |