Example #1
0
 public Float64Array(ArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length)
 {
 }
Example #2
0
 public Float64Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Example #3
0
 public Float64Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Example #4
0
 public Uint32Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Example #5
0
 public Uint32Array(ArrayBuffer buffer, int byteOffset, int length) : base(buffer, byteOffset, length)
 {
 }
Example #6
0
 public Int8Array(ArrayBuffer buffer, int byteOffset) : base(buffer, byteOffset)
 {
 }
Example #7
0
 public Uint32Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Example #8
0
 public Int8Array(ArrayBuffer buffer) : base(buffer)
 {
 }
Example #9
0
 protected TypedArray(ArrayBuffer buffer, int byteOffset, int length) : base(typeof(T).Name, buffer, byteOffset, length)
 {
 }
Example #10
0
 protected TypedArray(ArrayBuffer buffer) : base(typeof(T).Name, buffer)
 {
 }
Example #11
0
 protected TypedArray(ArrayBuffer buffer, int byteOffset, int length) : base(Interop.Runtime.New <T>(buffer, byteOffset, length))
 {
 }
Example #12
0
 protected TypedArray(ArrayBuffer buffer) : base(Interop.Runtime.New <T>(buffer))
 {
 }