| Safe Haskell | None | 
|---|
Data.Layout
Description
A DSL for describing data laid out in a regular fashion with a combination of structures and arrays.
- data Layout
 - type Bytes = Int
 - type Reps = Int
 - data  ByteOrder 
- = NoByteOrder
 - | LittleEndian
 - | BigEndian
 
 - module Data.Layout.Language
 - module Data.Layout.Vector
 
Documentation
The byte order of a value.
Constructors
| NoByteOrder | The word is only one byte in size.  | 
| LittleEndian | The least significant byte is first in the word.  | 
| BigEndian | The most significant byte is first in the word.  | 
module Data.Layout.Language
module Data.Layout.Vector