Safe Haskell | None |
---|
SDIF related data types
- section :: ByteString -> Int64 -> Int64 -> ByteString
- section' :: ByteString -> Int -> Int -> ByteString
- type Type = Int
- data_type_standard_p :: Type -> Bool
- data_type_string :: Type -> String
- data_type_size :: Type -> Int
- data Datum
- data_type_decoder :: Type -> ByteString -> Datum
- data_type_encoder :: Datum -> ByteString
Documentation
section :: ByteString -> Int64 -> Int64 -> ByteStringSource
Section of ByteString
from ith to jth indices.
section' :: ByteString -> Int -> Int -> ByteStringSource
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
Universal type for element data.
data_type_decoder :: Type -> ByteString -> DatumSource
Decoder for indicated data element type to Datum
.
data_type_encoder :: Datum -> ByteStringSource
SDIF encoder for Datum
.