Module
Data.ArrayBuffer.Types
- Package
- purescript-arraybuffer-types
- Repository
- purescript-contrib/purescript-arraybuffer-types
#ArrayBuffer Source
data ArrayBufferRepresents a JS ArrayBuffer object
#DataView Source
data DataViewRepresents a JS DataView on an ArrayBuffer (a slice into the ArrayBuffer)
#ArrayView Source
data ArrayView :: ArrayViewType -> Typedata ArrayView t0
The unifying representation for the different typed arrays
#ByteOffset Source
type ByteOffset = IntOffset in bytes into a DataView or ArrayBufer
#ByteLength Source
type ByteLength = IntLength in bytes of a DataView or ArrayBuffer
#ArrayViewType Source
data ArrayViewType#Int8 Source
data Int8 :: ArrayViewTypedata Int8
#Int16 Source
data Int16 :: ArrayViewTypedata Int16
#Int32 Source
data Int32 :: ArrayViewTypedata Int32
#Uint8 Source
data Uint8 :: ArrayViewTypedata Uint8
#Uint16 Source
data Uint16 :: ArrayViewTypedata Uint16
#Uint32 Source
data Uint32 :: ArrayViewTypedata Uint32
#Uint8Clamped Source
data Uint8Clamped :: ArrayViewTypedata Uint8Clamped
#Float32 Source
data Float32 :: ArrayViewTypedata Float32
#Float64 Source
data Float64 :: ArrayViewTypedata 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