Packages

o

scala.scalajs.js.typedarray

TypedArrayBuffer

object TypedArrayBuffer

Factory methods to create direct buffers from Typed Arrays.

All buffers created by the methods of this object are direct buffers with the native byte order of the platform.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TypedArrayBuffer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  20. def wrap(array: Float64Array): DoubleBuffer

    Wraps a Float64Array in a direct DoubleBuffer.

  21. def wrap(array: Float32Array): FloatBuffer

    Wraps a Float32Array in a direct FloatBuffer.

  22. def wrap(array: Int32Array): IntBuffer

    Wraps an Int32Array in a direct IntBuffer.

  23. def wrap(array: Int16Array): ShortBuffer

    Wraps an Int16Array in a direct ShortBuffer.

  24. def wrap(array: Uint16Array): CharBuffer

    Wraps a Uint16Array in a direct CharBuffer.

  25. def wrap(array: Int8Array): ByteBuffer

    Wraps an Int8Array in a direct ByteBuffer.

  26. def wrap(buffer: ArrayBuffer, byteOffset: Int, length: Int): ByteBuffer

    Wraps a view of an ArrayBuffer in a direct ByteBuffer.

    Wraps a view of an ArrayBuffer in a direct ByteBuffer.

    Equivalent to

    TypedArrayBuffer.wrap(new Int8Array(buffer, byteOffset, length))
  27. def wrap(buffer: ArrayBuffer): ByteBuffer

    Wraps an ArrayBuffer in a direct ByteBuffer.

    Wraps an ArrayBuffer in a direct ByteBuffer.

    Equivalent to

    TypedArrayBuffer.wrap(new Int8Array(buffer))

Inherited from AnyRef

Inherited from scala.Any

Ungrouped