asTypedList method

Int16List asTypedList()

Returns a typed view of this buffer. Note: The lifetime of this view is tied to the lifetime of this FfiBufferInt16. This Int16List must not live longer than the creating FfiBufferInt16

Implementation

Int16List asTypedList() {
  final buffer = _box.borrow();
  final addressRaw = _api._ffiBufferAddress(buffer);
  final size = _api._ffiBufferSize(buffer) ~/ 2;
  return ffi.Pointer<ffi.Int16>.fromAddress(addressRaw).asTypedList(size);
}