| Copyright | (c) Scrive 2011 |
|---|---|
| License | BSD-style (see the LICENSE file in the distribution) |
| Maintainer | mariusz@scrive.com |
| Stability | development |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell98 |
Text.JSON.ToJSValue
Description
Unifing some structures so they can be serialized to JSValue
Documentation
class ToJSValue a where Source #
Instances
| ToJSValue Bool Source # | |
| Real a => ToJSValue a Source # | |
Defined in Text.JSON.ToJSValue | |
| ToJSValue String Source # | |
| ToJSValue JSValue Source # | |
| ToJSValue a => ToJSValue [a] Source # | |
Defined in Text.JSON.ToJSValue | |
| ToJSValue a => ToJSValue (Maybe a) Source # | |
| (ToJSValue a, ToJSValue b) => ToJSValue (a, b) Source # | |
Defined in Text.JSON.ToJSValue | |
| ToJSValue a => ToJSValue (Map String a) Source # | |