Module
Data.ArrayBuffer.Types
- Package
- purescript-arraybuffer-types
- Repository
- purescript-contrib/purescript-arraybuffer-types
#ArrayBuffer Source
data ArrayBuffer :: TypeRepresents a JS ArrayBuffer object
#ArrayView Source
data ArrayView :: ArrayViewType -> TypeThe 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 :: Type#Int8 Source
data Int8 :: ArrayViewType#Int16 Source
data Int16 :: ArrayViewType#Int32 Source
data Int32 :: ArrayViewType#Uint8 Source
data Uint8 :: ArrayViewType#Uint16 Source
data Uint16 :: ArrayViewType#Uint32 Source
data Uint32 :: ArrayViewType#Uint8Clamped Source
data Uint8Clamped :: ArrayViewType#Float32 Source
data Float32 :: ArrayViewType#Float64 Source
data Float64 :: ArrayViewType#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