Packages

trait DataView extends scala.scalajs.js.Object with StObject

Annotations
@JSType() @native()
Source
DataView.scala
Linear Supertypes
StObject, scala.scalajs.js.Object, Any, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataView
  2. StObject
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val buffer: scala.scalajs.js.typedarray.ArrayBuffer
  6. val byteLength: Double
  7. val byteOffset: Double
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  9. final def eq(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef → Any
  11. def getBigInt64(byteOffset: Double, littleEndian: scala.Boolean): scala.scalajs.js.BigInt
  12. def getBigInt64(byteOffset: Double): scala.scalajs.js.BigInt

    Gets the BigInt64 value at the specified byte offset from the start of the view.

    Gets the BigInt64 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  13. def getBigUint64(byteOffset: Double, littleEndian: scala.Boolean): scala.scalajs.js.BigInt
  14. def getBigUint64(byteOffset: Double): scala.scalajs.js.BigInt

    Gets the BigUint64 value at the specified byte offset from the start of the view.

    Gets the BigUint64 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. def getFloat32(byteOffset: Double, littleEndian: scala.Boolean): Double
  17. def getFloat32(byteOffset: Double): Double

    Gets the Float32 value at the specified byte offset from the start of the view.

    Gets the Float32 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  18. def getFloat64(byteOffset: Double, littleEndian: scala.Boolean): Double
  19. def getFloat64(byteOffset: Double): Double

    Gets the Float64 value at the specified byte offset from the start of the view.

    Gets the Float64 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  20. def getInt16(byteOffset: Double, littleEndian: scala.Boolean): Double
  21. def getInt16(byteOffset: Double): Double

    Gets the Int16 value at the specified byte offset from the start of the view.

    Gets the Int16 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  22. def getInt32(byteOffset: Double, littleEndian: scala.Boolean): Double
  23. def getInt32(byteOffset: Double): Double

    Gets the Int32 value at the specified byte offset from the start of the view.

    Gets the Int32 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  24. def getInt8(byteOffset: Double): Double

    Gets the Int8 value at the specified byte offset from the start of the view.

    Gets the Int8 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  25. def getUint16(byteOffset: Double, littleEndian: scala.Boolean): Double
  26. def getUint16(byteOffset: Double): Double

    Gets the Uint16 value at the specified byte offset from the start of the view.

    Gets the Uint16 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  27. def getUint32(byteOffset: Double, littleEndian: scala.Boolean): Double
  28. def getUint32(byteOffset: Double): Double

    Gets the Uint32 value at the specified byte offset from the start of the view.

    Gets the Uint32 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  29. def getUint8(byteOffset: Double): Double

    Gets the Uint8 value at the specified byte offset from the start of the view.

    Gets the Uint8 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be fetched from any offset.

    byteOffset

    The place in the buffer at which the value should be retrieved.

  30. def hasOwnProperty(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  32. final def isInstanceOf[T0]: scala.Boolean
    Definition Classes
    Any
  33. def isPrototypeOf(v: scala.scalajs.js.Object): scala.Boolean
    Definition Classes
    Object
  34. final def ne(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  37. def propertyIsEnumerable(v: scala.Predef.String): scala.Boolean
    Definition Classes
    Object
  38. def setBigInt64(byteOffset: Double, value: scala.scalajs.js.BigInt, littleEndian: scala.Boolean): Unit
  39. def setBigInt64(byteOffset: Double, value: scala.scalajs.js.BigInt): Unit

    Stores a BigInt64 value at the specified byte offset from the start of the view.

    Stores a BigInt64 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  40. def setBigUint64(byteOffset: Double, value: scala.scalajs.js.BigInt, littleEndian: scala.Boolean): Unit
  41. def setBigUint64(byteOffset: Double, value: scala.scalajs.js.BigInt): Unit

    Stores a BigUint64 value at the specified byte offset from the start of the view.

    Stores a BigUint64 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  42. def setFloat32(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  43. def setFloat32(byteOffset: Double, value: Double): Unit

    Stores an Float32 value at the specified byte offset from the start of the view.

    Stores an Float32 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  44. def setFloat64(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  45. def setFloat64(byteOffset: Double, value: Double): Unit

    Stores an Float64 value at the specified byte offset from the start of the view.

    Stores an Float64 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  46. def setInt16(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  47. def setInt16(byteOffset: Double, value: Double): Unit

    Stores an Int16 value at the specified byte offset from the start of the view.

    Stores an Int16 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  48. def setInt32(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  49. def setInt32(byteOffset: Double, value: Double): Unit

    Stores an Int32 value at the specified byte offset from the start of the view.

    Stores an Int32 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  50. def setInt8(byteOffset: Double, value: Double): Unit

    Stores an Int8 value at the specified byte offset from the start of the view.

    Stores an Int8 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  51. def setUint16(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  52. def setUint16(byteOffset: Double, value: Double): Unit

    Stores an Uint16 value at the specified byte offset from the start of the view.

    Stores an Uint16 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  53. def setUint32(byteOffset: Double, value: Double, littleEndian: scala.Boolean): Unit
  54. def setUint32(byteOffset: Double, value: Double): Unit

    Stores an Uint32 value at the specified byte offset from the start of the view.

    Stores an Uint32 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  55. def setUint8(byteOffset: Double, value: Double): Unit

    Stores an Uint8 value at the specified byte offset from the start of the view.

    Stores an Uint8 value at the specified byte offset from the start of the view.

    byteOffset

    The place in the buffer at which the value should be set.

    value

    The value to set.

  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def toLocaleString(): scala.Predef.String
    Definition Classes
    Object
  58. def toString(): java.lang.String
    Definition Classes
    AnyRef → Any
  59. val toStringTag: java.lang.String
    Annotations
    @JSName(js.Symbol.toStringTag)
  60. def valueOf(): Any
    Definition Classes
    Object
  61. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  63. 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 StObject

Inherited from scala.scalajs.js.Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped