Module

Data.ArrayBuffer.ArrayBuffer

Package
purescript-arraybuffer
Repository
jacereda/purescript-arraybuffer

#create Source

create :: ByteLength -> Effect ArrayBuffer

Create an ArrayBuffer with the given capacity.

#byteLength Source

byteLength :: ArrayBuffer -> ByteLength

Represents the length of an ArrayBuffer in bytes.

#slice Source

slice :: ByteOffset -> ByteOffset -> ArrayBuffer -> Effect ArrayBuffer

Returns a new ArrayBuffer whose contents are a copy of this ArrayBuffer's bytes from begin, inclusive, up to end, exclusive.

#fromArray Source

fromArray :: Array Number -> ArrayBuffer

Convert an array into an ArrayBuffer representation.

#fromIntArray Source

fromIntArray :: Array Int -> ArrayBuffer

Convert an array into an ArrayBuffer representation.

#fromString Source

fromString :: String -> ArrayBuffer

Convert a string into an ArrayBuffer representation.