tomland-0.3: TOML parser
Toml.Type.TOML
Synopsis
data TOML Source #
Represents TOML configuration value.
Constructors
Fields
Instances
Methods
(==) :: TOML -> TOML -> Bool #
(/=) :: TOML -> TOML -> Bool #
showsPrec :: Int -> TOML -> ShowS #
show :: TOML -> String #
showList :: [TOML] -> ShowS #
(<>) :: TOML -> TOML -> TOML #
sconcat :: NonEmpty TOML -> TOML #
stimes :: Integral b => b -> TOML -> TOML #
mempty :: TOML #
mappend :: TOML -> TOML -> TOML #
mconcat :: [TOML] -> TOML #
insertKeyVal :: Key -> Value a -> TOML -> TOML Source #
Inserts given key-value into the TOML.
TOML
insertTable :: Key -> TOML -> TOML -> TOML Source #
Inserts given table into the TOML.