The SharedArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer, similar to the ArrayBuffer object, but in a way that they can be used to create views on shared memory. A SharedArrayBuffer is not a Transferable Object, unlike an ArrayBuffer which is transferable.

Documentation SharedArrayBuffer by Mozilla Contributors, licensed under CC-BY-SA 2.5.

Constructor

new(?length:Int)

Variables

Methods

slice(?begin:Int, ?end:Int):ArrayBuffer