glindo/examples/json
Types
pub type JsonError(str) {
JsonError(message: str)
}
Constructors
-
JsonError(message: str)
Functions
pub fn json_array() -> Parser(JsonValue)
pub fn json_number() -> Parser(JsonValue)
pub fn json_object() -> Parser(JsonValue)
pub fn json_string() -> Parser(JsonValue)
pub fn json_value() -> Parser(JsonValue)
pub fn parse_json(string: String) -> Result(JsonValue, String)
pub fn print_json(jval: JsonValue, level: Int) -> String