Fable
Fable copied to clipboard
[Dart] TypedArrays
It looks like Dart also has numeric typed arrays like JS to improve space efficiency. We should use them as we do with JS, specially Uint8List (byte[]) for image processing. Hopefully it will be easier because they all implement List<int>.