| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Octane.Type.Dictionary
- newtype Dictionary a = Dictionary (Map Text a)
Documentation
newtype Dictionary a Source #
A mapping between text and arbitrary values.
Constructors
| Dictionary (Map Text a) |
Instances
| IsList (Dictionary a) Source # | Allows creating
|
| Eq a => Eq (Dictionary a) Source # | |
| Show a => Show (Dictionary a) Source # | Shown as
|
| Generic (Dictionary a) Source # | |
| ToJSON a => ToJSON (Dictionary a) Source # | Encoded directly as a JSON object.
|
| Binary a => Binary (Dictionary a) Source # | Elements are stored with the key first, then the value. The dictionary
ends when a key is
|
| NFData a => NFData (Dictionary a) Source # | |
| type Rep (Dictionary a) Source # | |
| type Item (Dictionary a) Source # | |