public Uint8Array(SharedArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length) { }
public Uint8Array(SharedArrayBuffer buffer) : base(buffer) { }
public Uint8Array(SharedArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset) { }
protected TypedArray(SharedArrayBuffer buffer, int byteOffset, int length) : base(Runtime.New <T> (buffer, byteOffset, length)) { }
public Int32Array(SharedArrayBuffer buffer) : base(buffer) { }
protected TypedArray(SharedArrayBuffer buffer) : base(Runtime.New <T> (buffer)) { }
/// <summary> /// Initializes a new instance of the <see cref="T:WebAssembly.Core.DataView"/> class. /// </summary> /// <param name="buffer"><see cref="T:WebAssembly.Core.SharedArrayBuffer"/> to use as the storage backing the new <see cref="T:WebAssembly.Core.DataView"/> object.</param> /// <param name="byteOffset">The offset, in bytes, to the first byte in the above buffer for the new view to reference. If unspecified, the buffer view starts with the first byte.</param> /// <param name="byteLength">The number of elements in the byte array. If unspecified, the view's length will match the buffer's length.</param> public DataView(SharedArrayBuffer buffer, int byteOffset, int byteLength) : base(Runtime.New <DataView> (buffer, byteOffset, byteLength)) { }
/// <summary> /// Initializes a new instance of the <see cref="T:WebAssembly.Core.DataView"/> class. /// </summary> /// <param name="buffer"><see cref="T:WebAssembly.Core.SharedArrayBuffer"/> to use as the storage backing the new <see cref="T:WebAssembly.Core.DataView"/> object.</param> public DataView(SharedArrayBuffer buffer) : base(Runtime.New <DataView> (buffer)) { }
public Float64Array(SharedArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset) { }
public Float64Array(SharedArrayBuffer buffer) : base(buffer) { }