ffi_helper 3.0.0-beta
ffi_helper: ^3.0.0-beta copied to clipboard
Utility classes to make working with Dart's FFI a little bit simpler and more efficient.
1.0.0+ #
- dropped, shouldn't be used
2.0.0 2.0.0+2 #
- add thin
Arraywrapper to manage view into contiguous memory - add
Arenaclass for arena allocation - add
SharedArrayfor shared (reference counted) memory
2.0.1 #
- fix subclassing problem of
Array
2.1.0 #
Arraygets adelete()method (just sugar forfree(array.ptr))
3.0.0-beta #
- use extensions instead of inheritance (otherwise an
Array<Uint8>couldn't be passed as anUint8Array) - use only
NativeTypeas as generic type parameter, which is much less verbose
Todo #
- more testing
- more extensions (as for now, there are only extensions for
Array<Uint8>as this would be the most common type)