UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

21 lines (20 loc) 342 B
/** * @public */ export interface ITypedArrayExtensions { copyFromBuffer ( _memoryDataView: DataView, _pointer: number, _littleEndian?: boolean, ) : void; copyToBuffer ( _memoryDataView: DataView, _pointer: number, _littleEndian?: boolean, ) : void; }