示例#1
0
 public Uint8Array(SharedArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length)
 {
 }
示例#2
0
 public Uint8Array(SharedArrayBuffer buffer) : base(buffer)
 {
 }
示例#3
0
 public Uint8Array(SharedArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
示例#4
0
 protected TypedArray(SharedArrayBuffer buffer, int byteOffset, int length) : base(Runtime.New <T> (buffer, byteOffset, length))
 {
 }
 public Int32Array(SharedArrayBuffer buffer) : base(buffer)
 {
 }
示例#6
0
 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))
 {
 }
示例#9
0
 public Float64Array(SharedArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
示例#10
0
 public Float64Array(SharedArrayBuffer buffer) : base(buffer)
 {
 }