Module Json2
This module is undocumented. This is a list of its definitions. 
(:::) :: JSON a => String -> a -> JSEntry 
  
JSEntry :: String -> (StringBuilder.T -> <Proc> StringBuilder.T) -> JSEntry 
  
JSObject :: (StringBuilder.T -> <Proc> StringBuilder.T) -> JSObject 
  
buildJSON :: JSON a => StringBuilder.T -> a -> <Proc> StringBuilder.T 
  
buildJSONList :: JSON a => StringBuilder.T -> [a] -> <Proc> StringBuilder.T 
  
toJSON :: JSON a => a -> String 
  
toJSONList :: JSON a => [a] -> [JSObject] 
  
 |