haskell-formatter-0.1.0: Haskell source code formatter

Safe HaskellNone

Language.Haskell.Formatter.Internal.TreeFormat

Description

 

Documentation

type TreeFormat a = MapForest String (Leaf a)Source

data Leaf a Source

Constructors

Boolean (RawLeaf Bool a) 
LimitedInteger (RawLeaf Int a) 
SingleFloating (RawLeaf Float a) 

parseYamlFile :: TreeFormat a -> a -> FilePath -> IO (Either String a)Source