|
|
|
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
| class (Ord key) => HasKey x key | x -> key where |
|
|
| newtype Keyed x |
|
|
| data VariableSetUpdate x |
| Encodes the updates to a variable set. | | Constructors | | | Instances | |
|
|
| newtype VariableSet x |
|
|
| newEmptyVariableSet :: (HasKey x key) => IO (VariableSet x) |
| Create a new empty variable set. |
|
| newVariableSet :: (HasKey x key) => [x] -> IO (VariableSet x) |
| Create a new variable set with given contents |
|
| updateSet :: (HasKey x key) => VariableSet x -> VariableSetUpdate x -> IO () |
| Update a variable set in some way. |
|
| type VariableSetSource x = SinkSource [x] (VariableSetUpdate x) |
|
| Produced by Haddock version 0.3 |