Array<T extends NativeType> class

Thin wrapper around a Pointer and its associated typed list. It is meant to be used with extensions like Uint8Array. It can be extended to implement a different allocator or deallocator.

Implementers
Available Extensions

Constructors

Array(int length, GetView<T> getView)
Array.fromList(Iterable<int> list, GetView<T> getView)
Array.fromPtr(Pointer<T> ptr, List<int> _view)

Properties

hashCode int
The hash code for this object. [...]
read-only, override
ptr Pointer<T>
@doNotStore, final
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited
untypedView List<int>
@doNotStore, read-only

Methods

delete() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
override

Operators

operator ==(dynamic arr) bool
The equality operator. [...]
override