Module
Data.ArrayBuffer.Types
- Package
- purescript-arraybuffer-types
- Repository
- purescript-contrib/purescript-arraybuffer-types
#ArrayBuffer Source
data ArrayBuffer
Represents a JS ArrayBuffer object
#DataView Source
data DataView
Represents a JS DataView on an ArrayBuffer (a slice into the ArrayBuffer)
#ArrayView Source
data ArrayView :: ArrayViewType -> Type
data ArrayView t0
The unifying representation for the different typed arrays
#ByteOffset Source
type ByteOffset = Int
Offset in bytes into a DataView or ArrayBufer
#ByteLength Source
type ByteLength = Int
Length in bytes of a DataView or ArrayBuffer
#ArrayViewType Source
data ArrayViewType
#Int8 Source
data Int8 :: ArrayViewType
data Int8
#Int16 Source
data Int16 :: ArrayViewType
data Int16
#Int32 Source
data Int32 :: ArrayViewType
data Int32
#Uint8 Source
data Uint8 :: ArrayViewType
data Uint8
#Uint16 Source
data Uint16 :: ArrayViewType
data Uint16
#Uint32 Source
data Uint32 :: ArrayViewType
data Uint32
#Uint8Clamped Source
data Uint8Clamped :: ArrayViewType
data Uint8Clamped
#Float32 Source
data Float32 :: ArrayViewType
data Float32
#Float64 Source
data Float64 :: ArrayViewType
data Float64
#Int16Array Source
type Int16Array = ArrayView Int16
#Int32Array Source
type Int32Array = ArrayView Int32
#Uint8Array Source
type Uint8Array = ArrayView Uint8
#Uint16Array Source
type Uint16Array = ArrayView Uint16
#Uint32Array Source
type Uint32Array = ArrayView Uint32
#Float32Array Source
type Float32Array = ArrayView Float32
#Float64Array Source
type Float64Array = ArrayView Float64
- Modules
- Data.
ArrayBuffer. Types