typed_data
typed_data copied to clipboard
Utility functions and classes that makes working with typed data lists easier in Dart
There will not be a breaking change in package:collection that concerns this package, but currently due to a circular dependency it's not even possible to bump said package's version to...
The following code demonstrates that the length of the `Uint8List` returned by `ByteBuffer.asUint8List()` has an unexpected value. Its value is perhaps related to the allocation size of the ByteBuffer, but...
Some of the Dart code I'm working with reads unsigned 16 bit data from a Wav file into an `IntList`... and I noticed something odd going on. The following test...
Given the following example code: ```dart import 'dart:typed_data'; void main(List arguments) { final a = Float32List.fromList([1.0, 2.0]); final b = a.buffer.asUint8List(); print(b); final c = ByteData(8); c.setFloat32(0, 1.0); c.setFloat32(4, 2.0);...
It's not obvious to me how to convert a`Uint8Buffer` to a `Uint8List`. I imagine `Uint8Buffer` is useful when building a binary representation of something where I don't know the size...
Version [1.2.0 was released](https://pub.dev/packages/typed_data/versions), but this [tag is missing](https://github.com/dart-lang/typed_data/tags) on GitHub.
The pub site can show example code for a package. https://www.dartlang.org/tools/pub/package-layout#examples Let me know if you want me to try working on this. related issue : dart-lang/site-www#413