hsdif-0.14: Haskell SDIF

Safe HaskellNone

Sound.SDIF.Type

Description

SDIF related data types

Synopsis

Documentation

section :: ByteString -> Int64 -> Int64 -> ByteStringSource

Section of ByteString from ith to jth indices.

section' :: ByteString -> Int -> Int -> ByteStringSource

Int based variant of section.

type Type = IntSource

Data element type.

data_type_standard_p :: Type -> BoolSource

Is data element type standard.

data_type_string :: Type -> StringSource

String describing indicated data element type.

 data_type_string 0x008 == "real number"

data_type_size :: Type -> IntSource

Size (in bytes) of data element type.

 data_type_size 0x008 == 8

data Datum Source

Universal type for element data.

Instances

data_type_decoder :: Type -> ByteString -> DatumSource

Decoder for indicated data element type to Datum.