class Uint32Array extends scala.scalajs.js.Object with StObject with std.Uint32Array

Annotations
@JSType() @JSGlobal("Uint32Array") @native()
Source
Uint32Array.scala
Linear Supertypes
std.Uint32Array, NumberDictionary[Double], StObject, scala.scalajs.js.Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Uint32Array
  2. Uint32Array
  3. NumberDictionary
  4. StObject
  5. Object
  6. Any
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Uint32Array(buffer: ArrayBufferLike, byteOffset: Unit, length: Double)
  2. new Uint32Array(buffer: ArrayBufferLike, byteOffset: Double, length: Double)
  3. new Uint32Array(buffer: ArrayBufferLike, byteOffset: Double)
  4. new Uint32Array(length: Double)
  5. new Uint32Array(elements: scala.scalajs.js.Iterable[Double])
  6. new Uint32Array(array: ArrayLike[Double])
  7. new Uint32Array(array: ArrayBufferLike)
  8. new Uint32Array()

Value Members

  1. final def !=(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  4. val BYTES_PER_ELEMENT: Double

    The size in bytes of each element in the array.

    The size in bytes of each element in the array.

    Definition Classes
    Uint32Array
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val buffer: ArrayBufferLike

    The ArrayBuffer instance referenced by the array.

    The ArrayBuffer instance referenced by the array.

    Definition Classes
    Uint32Array
  7. val byteLength: Double

    The length in bytes of the array.

    The length in bytes of the array.

    Definition Classes
    Uint32Array
  8. val byteOffset: Double

    The offset in bytes of the array.

    The offset in bytes of the array.

    Definition Classes
    Uint32Array
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. def copyWithin(target: Double, start: Double, end: Double): Uint32Array.this.type
    Definition Classes
    Uint32Array
  11. def copyWithin(target: Double, start: Double): Uint32Array.this.type

    Returns the this object after copying a section of the array identified by start and end to the same array starting at position target

    Returns the this object after copying a section of the array identified by start and end to the same array starting at position target

    target

    If target is negative, it is treated as length+target where length is the length of the array.

    start

    If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.

    Definition Classes
    Uint32Array
  12. def entries(): IterableIterator[Tuple2[Double, Double]]

    Returns an array of key, value pairs for every entry in the array

    Returns an array of key, value pairs for every entry in the array

    Definition Classes
    Uint32Array
  13. final def eq(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef → Any
  15. def every(predicate: Function3[Double, Double, Uint32Array.this.type, Any], thisArg: Any): scala.Boolean
    Definition Classes
    Uint32Array
  16. def every(predicate: Function3[Double, Double, Uint32Array.this.type, Any]): scala.Boolean

    Determines whether all the members of an array satisfy the specified test.

    Determines whether all the members of an array satisfy the specified test.

    predicate

    A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.

    Definition Classes
    Uint32Array
  17. def fill(value: Double, start: Unit, end: Double): Uint32Array.this.type
    Definition Classes
    Uint32Array
  18. def fill(value: Double, start: Double, end: Double): Uint32Array.this.type
    Definition Classes
    Uint32Array
  19. def fill(value: Double, start: Double): Uint32Array.this.type
    Definition Classes
    Uint32Array
  20. def fill(value: Double): Uint32Array.this.type

    Returns the this object after filling the section identified by start and end with value

    Returns the this object after filling the section identified by start and end with value

    value

    value to fill array section with

    Definition Classes
    Uint32Array
  21. def filter(predicate: Function3[Double, Double, Uint32Array.this.type, Any], thisArg: Any): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  22. def filter(predicate: Function3[Double, Double, Uint32Array.this.type, Any]): scala.scalajs.js.typedarray.Uint32Array

    Returns the elements of an array that meet the condition specified in a callback function.

    Returns the elements of an array that meet the condition specified in a callback function.

    predicate

    A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.

    Definition Classes
    Uint32Array
  23. def find(predicate: Function3[Double, Double, Uint32Array.this.type, scala.Boolean], thisArg: Any): UndefOr[Double]
    Definition Classes
    Uint32Array
  24. def find(predicate: Function3[Double, Double, Uint32Array.this.type, scala.Boolean]): UndefOr[Double]

    Returns the value of the first element in the array where predicate is true, and undefined otherwise.

    Returns the value of the first element in the array where predicate is true, and undefined otherwise.

    predicate

    find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.

    Definition Classes
    Uint32Array
  25. def findIndex(predicate: Function3[Double, Double, Uint32Array.this.type, scala.Boolean], thisArg: Any): Double
    Definition Classes
    Uint32Array
  26. def findIndex(predicate: Function3[Double, Double, Uint32Array.this.type, scala.Boolean]): Double

    Returns the index of the first element in the array where predicate is true, and -1 otherwise.

    Returns the index of the first element in the array where predicate is true, and -1 otherwise.

    predicate

    find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.

    Definition Classes
    Uint32Array
  27. def forEach(callbackfn: Function3[Double, Double, Uint32Array.this.type, Unit], thisArg: Any): Unit
    Definition Classes
    Uint32Array
  28. def forEach(callbackfn: Function3[Double, Double, Uint32Array.this.type, Unit]): Unit

    Performs the specified action for each element in an array.

    Performs the specified action for each element in an array.

    callbackfn

    A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.

    Definition Classes
    Uint32Array
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  30. def hasOwnProperty(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  32. def includes(searchElement: Double, fromIndex: Double): scala.Boolean
    Definition Classes
    Uint32Array
  33. def includes(searchElement: Double): scala.Boolean

    Determines whether an array includes a certain element, returning true or false as appropriate.

    Determines whether an array includes a certain element, returning true or false as appropriate.

    searchElement

    The element to search for.

    Definition Classes
    Uint32Array
  34. def indexOf(searchElement: Double, fromIndex: Double): Double
    Definition Classes
    Uint32Array
  35. def indexOf(searchElement: Double): Double

    Returns the index of the first occurrence of a value in an array.

    Returns the index of the first occurrence of a value in an array.

    searchElement

    The value to locate in the array.

    Definition Classes
    Uint32Array
  36. final def isInstanceOf[T0]: scala.Boolean
    Definition Classes
    Any
  37. def isPrototypeOf(v: scala.scalajs.js.Object): scala.Boolean
    Definition Classes
    Object
  38. val iterator: Function0[IterableIterator[Double]]
    Definition Classes
    Uint32Array
    Annotations
    @JSName(js.Symbol.iterator)
  39. def join(separator: java.lang.String): java.lang.String
    Definition Classes
    Uint32Array
  40. def join(): java.lang.String

    Adds all the elements of an array separated by the specified separator string.

    Adds all the elements of an array separated by the specified separator string.

    Definition Classes
    Uint32Array
  41. def keys(): IterableIterator[Double]

    Returns an list of keys in the array

    Returns an list of keys in the array

    Definition Classes
    Uint32Array
  42. def lastIndexOf(searchElement: Double, fromIndex: Double): Double
    Definition Classes
    Uint32Array
  43. def lastIndexOf(searchElement: Double): Double

    Returns the index of the last occurrence of a value in an array.

    Returns the index of the last occurrence of a value in an array.

    searchElement

    The value to locate in the array.

    Definition Classes
    Uint32Array
  44. val length: Double

    The length of the array.

    The length of the array.

    Definition Classes
    Uint32Array
  45. def map(callbackfn: Function3[Double, Double, Uint32Array.this.type, Double], thisArg: Any): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  46. def map(callbackfn: Function3[Double, Double, Uint32Array.this.type, Double]): scala.scalajs.js.typedarray.Uint32Array

    Calls a defined callback function on each element of an array, and returns an array that contains the results.

    Calls a defined callback function on each element of an array, and returns an array that contains the results.

    callbackfn

    A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.

    Definition Classes
    Uint32Array
  47. final def ne(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  48. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  49. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  50. def propertyIsEnumerable(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  51. def reduce[U](callbackfn: Function4[U, Double, Double, Uint32Array.this.type, U], initialValue: U): U

    Calls the specified callback function for all the elements in an array.

    Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

    callbackfn

    A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.

    initialValue

    If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.

    Definition Classes
    Uint32Array
  52. def reduce(callbackfn: Function4[Double, Double, Double, Uint32Array.this.type, Double], initialValue: Double): Double
    Definition Classes
    Uint32Array
  53. def reduce(callbackfn: Function4[Double, Double, Double, Uint32Array.this.type, Double]): Double

    Calls the specified callback function for all the elements in an array.

    Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

    callbackfn

    A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.

    Definition Classes
    Uint32Array
  54. def reduceRight[U](callbackfn: Function4[U, Double, Double, Uint32Array.this.type, U], initialValue: U): U

    Calls the specified callback function for all the elements in an array, in descending order.

    Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

    callbackfn

    A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.

    initialValue

    If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.

    Definition Classes
    Uint32Array
  55. def reduceRight(callbackfn: Function4[Double, Double, Double, Uint32Array.this.type, Double], initialValue: Double): Double
    Definition Classes
    Uint32Array
  56. def reduceRight(callbackfn: Function4[Double, Double, Double, Uint32Array.this.type, Double]): Double

    Calls the specified callback function for all the elements in an array, in descending order.

    Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

    callbackfn

    A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.

    Definition Classes
    Uint32Array
  57. def reverse(): scala.scalajs.js.typedarray.Uint32Array

    Reverses the elements in an Array.

    Reverses the elements in an Array.

    Definition Classes
    Uint32Array
  58. def set(array: ArrayLike[Double], offset: Double): Unit
    Definition Classes
    Uint32Array
  59. def set(array: ArrayLike[Double]): Unit

    Sets a value or an array of values.

    Sets a value or an array of values.

    array

    A typed or untyped array of values to set.

    Definition Classes
    Uint32Array
  60. def slice(start: Unit, end: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  61. def slice(start: Double, end: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  62. def slice(start: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  63. def slice(): scala.scalajs.js.typedarray.Uint32Array

    Returns a section of an array.

    Returns a section of an array.

    Definition Classes
    Uint32Array
  64. def some(predicate: Function3[Double, Double, Uint32Array.this.type, Any], thisArg: Any): scala.Boolean
    Definition Classes
    Uint32Array
  65. def some(predicate: Function3[Double, Double, Uint32Array.this.type, Any]): scala.Boolean

    Determines whether the specified callback function returns true for any element of an array.

    Determines whether the specified callback function returns true for any element of an array.

    predicate

    A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.

    Definition Classes
    Uint32Array
  66. def sort(compareFn: Function2[Double, Double, Double]): Uint32Array.this.type
    Definition Classes
    Uint32Array
  67. def sort(): Uint32Array.this.type

    Sorts an array.

    Sorts an array.

    Definition Classes
    Uint32Array
  68. def subarray(begin: Unit, end: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  69. def subarray(begin: Double, end: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  70. def subarray(begin: Double): scala.scalajs.js.typedarray.Uint32Array
    Definition Classes
    Uint32Array
  71. def subarray(): scala.scalajs.js.typedarray.Uint32Array

    Gets a new Uint32Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.

    Gets a new Uint32Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.

    Definition Classes
    Uint32Array
  72. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  73. def toLocaleString(): scala.Predef.String
    Definition Classes
    Object
  74. def toString(): java.lang.String
    Definition Classes
    AnyRef → Any
  75. val toStringTag: stdStrings.Uint32Array
    Definition Classes
    Uint32Array
    Annotations
    @JSName(js.Symbol.toStringTag)
  76. def valueOf(): Any
    Definition Classes
    Object
  77. def values(): IterableIterator[Double]

    Returns an list of values in the array

    Returns an list of values in the array

    Definition Classes
    Uint32Array
  78. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  79. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  80. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from std.Uint32Array

Inherited from NumberDictionary[Double]

Inherited from StObject

Inherited from scala.scalajs.js.Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped