8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
export function sizedDataView(size: number): DataView
|
|
export function filledDataView(bytes: number[]): DataView
|
|
|
|
/**
|
|
* copies max possible number of bytes from src to dest (min of both sizes)
|
|
*/
|
|
export function memcpy(dest: DataView, src: DataView): void
|