decoder

Values

pub fn glee_parse_json_float(
  json: String,
  field: String,
) -> Result(Float, String)

Parse a JSON string and return the float value of a given field.

pub fn glee_parse_json_int(
  json: String,
  field: String,
) -> Result(Int, String)

Parse a JSON string and return the int value of a given field.

pub fn glee_parse_json_string(
  json: String,
  field: String,
) -> Result(String, String)

Parse a JSON string and return the string value of a given field.

Search Document