# Module jsone # * [Description](#description) * [Data Types](#types) * [Function Index](#index) * [Function Details](#functions) JSON decoding/encoding module. ## Data Types ## ### json_array() ###
json_array() = [json_value()]
### json_boolean() ###
json_boolean() = boolean()
### json_number() ###
json_number() = number()
### json_object() ###
json_object() = {object, json_object_members()}
### json_object_members() ###
json_object_members() = [{json_string(), json_value()}]
### json_string() ###
json_string() = binary()
### json_value() ###
json_value() = json_number() | json_string() | json_array() | json_object() | json_boolean() | null
## Function Index ##
decode/1 | JSONバイナリをデコードする. |
encode/1 | JSON値をiodata形式にエンコードする. |
decode(Json::binary()) -> {json_value(), RestJson::binary()}
encode(JsonValue::json_value()) -> iodata()