configurator-ng-0.0.0.1: The next generation of configuration management

MaintainerLeon P Smith <leon@melding-monads.com>
Safe HaskellNone

Data.Configurator.Config.Internal

Description

 

Synopsis

Documentation

newtype Config Source

A Config is a finite map from Text to Value.

Constructors

Config (ConfigMap Value) 

subassocs :: Text -> ConfigMap a -> [(Text, a)]Source

FIXME: improve this implementation.

subassocs_ :: (Text -> a -> [(Text, b)]) -> Text -> ConfigPlan a -> [(Text, b)]Source

foldPlan :: b -> (b -> b -> b) -> (Text -> a -> b) -> Text -> ConfigPlan a -> bSource