ntalbs / json_parser

Simple JSON parser in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consider use Vec<(String, Json)> for storing object

ntalbs opened this issue · comments

Current implementation represents object with BTreeMap<String, Json>. If I use Vect<String, Json)>, the implementation of fmt_object will be similar to fmt_array.