summaryrefslogtreecommitdiff
path: root/examples/scala-js/library/src/main/scala/scala/scalajs/js/typedarray/Uint32Array.scala
blob: 9742e19e3e332f9927dcae9af28ddc41ae2b9e53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package scala.scalajs.js.typedarray

import scala.scalajs.js

class Uint32Array private extends TypedArray[Double, Uint32Array] {

  /** Constructs a Uint32Array with the given length. Initialized to all 0 */
  def this(length: Int) = this()

  /** Creates a new Uint32Array with the same elements than the given TypedArray
   *
   *  The elements are converted before being stored in the new Int8Array.
   */
  def this(typedArray: TypedArray[_, _]) = this()

  /** Creates a new Uint32Array with the elements in the given array */
  def this(array: js.Array[_]) = this()

  /** Creates a Uint32Array view on the given ArrayBuffer */
  def this(buffer: ArrayBuffer, byteOffset: Int = 0, length: Int = ???) = this()

}

object Uint32Array extends TypedArrayStatic