Safe Haskell | None |
---|---|
Language | Haskell2010 |
- data DTA = DTA {}
- data Tree = Tree {
- nodeID :: Word32
- treeChunks :: [Chunk]
- data Chunk
- lFromDTB :: ByteString -> DTA
- hFromDTB :: Handle -> IO DTA
- fromDTB :: FilePath -> IO DTA
- lToDTB :: DTA -> ByteString
- hToDTB :: Handle -> DTA -> IO ()
- toDTB :: FilePath -> DTA -> IO ()
- sFromDTA :: String -> DTA
- hFromDTA :: Handle -> IO DTA
- fromDTA :: FilePath -> IO DTA
- sToDTA :: DTA -> String
- hToDTA :: Handle -> DTA -> IO ()
- toDTA :: FilePath -> DTA -> IO ()
- renumberFrom :: Word32 -> DTA -> DTA
Documentation
A top-level file.
A list of chunks, for either the top-level tree or a subtree.
Tree | |
|
A data value, which may be a subtree. The constructors are ordered by their chunk identification tag in the binary format.
lFromDTB :: ByteString -> DTA Source #
lToDTB :: DTA -> ByteString Source #