Library to deal with a single global association between strings.
Author: Michael Hanus
setAssoc
:: String -> String -> IO ()
Defines a global association between two strings. |
getAssoc
:: String -> IO (Maybe String)
Gets the value associated to a string. |
Defines a global association between two strings. Both arguments must be evaluable to ground terms before applying this operation. |
Gets the value associated to a string. Nothing is returned if there does not exist an associated value. |