configuration-0.1: Simple data type for application configuration.

Data.Configuration

Synopsis

Documentation

data Conf Source

Instances

(!) :: Typeable a => Conf -> String -> aSource

toDyn :: Typeable a => a -> Dynamic

Converts an arbitrary value into an object of type Dynamic.

The type of the object must be an instance of Typeable, which ensures that only monomorphically-typed objects may be converted to Dynamic. To convert a polymorphic object into Dynamic, give it a monomorphic type signature. For example:

    toDyn (id :: Int -> Int)