Ejemplo n.º 1
0
 public Uint32Array(ArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length)
 {
 }
Ejemplo n.º 2
0
 public Uint32Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Ejemplo n.º 3
0
 public Uint32Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Ejemplo n.º 4
0
 public Int16Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Ejemplo n.º 5
0
 public Int16Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Ejemplo n.º 6
0
 public Float64Array(ArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length)
 {
 }
Ejemplo n.º 7
0
 public Float64Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Ejemplo n.º 8
0
 public Float64Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Ejemplo n.º 9
0
		/// <summary>
		/// Initializes a new instance of the <see cref="T:WebAssembly.Core.DataView"/> class.
		/// </summary>
		/// <param name="buffer"><see cref="T:WebAssembly.Core.ArrayBuffer"/> 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 (ArrayBuffer buffer, int byteOffset, int byteLength) : base (Runtime.New<DataView> (buffer, byteOffset, byteLength))
		{ }
Ejemplo n.º 10
0
		/// <summary>
		/// Initializes a new instance of the <see cref="T:WebAssembly.Core.DataView"/> class.
		/// </summary>
		/// <param name="buffer"><see cref="T:WebAssembly.Core.ArrayBuffer"/> to use as the storage backing the new <see cref="T:WebAssembly.Core.DataView"/> object.</param>
		public DataView (ArrayBuffer buffer) : base (Runtime.New<DataView> (buffer))
		{ }