class DataView extends Object with ArrayBufferView
ECMAScript 6 A DataView allows for extraction of particular data types at specific offsets.
- Alphabetic
- By Inheritance
- DataView
- ArrayBufferView
- Object
- Any
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DataView(buffer: ArrayBuffer, byteOffset: Int = 0, byteLength: Int = ???)
Value Members
- final def !=(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (DataView, B)
- final def ==(arg0: scala.Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val buffer: ArrayBuffer
The underlying buffer of this ArrayBufferView
The underlying buffer of this ArrayBufferView
- Definition Classes
- ArrayBufferView
- val byteLength: Int
The number of bytes of this ArrayBufferView
The number of bytes of this ArrayBufferView
- Definition Classes
- ArrayBufferView
- val byteOffset: Int
The offset of this ArrayBufferView in the underlying buffer
The offset of this ArrayBufferView in the underlying buffer
- Definition Classes
- ArrayBufferView
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def ensuring(cond: (DataView) => Boolean, msg: => scala.Any): DataView
- def ensuring(cond: (DataView) => Boolean): DataView
- def ensuring(cond: Boolean, msg: => scala.Any): DataView
- def ensuring(cond: Boolean): DataView
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getFloat32(byteOffset: Int, littleEndian: Boolean = false): Float
- def getFloat64(byteOffset: Int, littleEndian: Boolean = false): Double
- def getInt16(byteOffset: Int, littleEndian: Boolean = false): Short
- def getInt32(byteOffset: Int, littleEndian: Boolean = false): Int
- def getInt8(byteOffset: Int): Byte
- def getUint16(byteOffset: Int, littleEndian: Boolean = false): Int
- def getUint32(byteOffset: Int, littleEndian: Boolean = false): Double
- def getUint8(byteOffset: Int): Short
- def hasOwnProperty(v: String): Boolean
Tests whether this object has the specified property as a direct property.
Tests whether this object has the specified property as a direct property.
Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.
MDN
- Definition Classes
- Object
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPrototypeOf(v: Object): Boolean
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
- Definition Classes
- Object
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def propertyIsEnumerable(v: String): Boolean
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
If the object does not have the specified property, this method returns false.
MDN
- Definition Classes
- Object
- def setFloat32(byteOffset: Int, value: Float, littleEndian: Boolean = false): Unit
- def setFloat64(byteOffset: Int, value: Double, littleEndian: Boolean = false): Unit
- def setInt16(byteOffset: Int, value: Short, littleEndian: Boolean = false): Unit
- def setInt32(byteOffset: Int, value: Int, littleEndian: Boolean = false): Unit
- def setInt8(byteOffset: Int, value: Byte): Unit
- def setUint16(byteOffset: Int, value: Int, littleEndian: Boolean = false): Unit
- def setUint32(byteOffset: Int, value: Double, littleEndian: Boolean = false): Unit
- def setUint8(byteOffset: Int, value: Short): Unit
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toLocaleString(): String
- Definition Classes
- Object
- def toString(): String
- Definition Classes
- AnyRef → Any
- def valueOf(): scala.Any
- Definition Classes
- Object
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from DataView toStringFormat[DataView] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)instead ofvalue.formatted(formatString), or use thef""string interpolator. In Java 15 and later,formattedresolves to the new method in String which has reversed parameters.
- def →[B](y: B): (DataView, B)
- Implicit
- This member is added by an implicit conversion from DataView toArrowAssoc[DataView] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.