tomland-0.4.0: Bidirectional TOML parser
Toml.Type.TOML
data TOML Source #
Represents TOML configuration value.
Constructors
Fields
Defined in Toml.Type.TOML
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
insertKeyAnyVal :: Key -> AnyValue -> TOML -> TOML Source #
insertTable :: Key -> TOML -> TOML -> TOML Source #
Inserts given table into the TOML.