| |||||||
| |||||||
| Documentation | |||||||
| type JSONClass = String | |||||||
| type JSONKey = String | |||||||
| type JSONVal = String | |||||||
| class Show a => JSON a where | |||||||
| |||||||
| showJSArrayObj :: JSONClass -> [JSONVal] -> String | |||||||
| showJSHashObj :: JSONClass -> [(JSONKey, JSONVal)] -> String | |||||||
| showJSArray :: [JSONVal] -> String | |||||||
| showJSHash :: [(JSONKey, JSONVal)] -> String | |||||||
| showJSScalar :: JSONClass -> String | |||||||
| showJSObj :: (a -> String) -> JSONClass -> a -> String | |||||||
| Produced by Haddock version 2.7.2 |