🥞 flattens nested structures into a flat single dimension map
Add the following to your cargo project's Cargo.toml
file.
toml
[dependencies]
flats = "0.1"
```rust
extern crate serde_json; extern crate flats;
use std::collections::BTreeMap; use flats::{flatten_value, Scalar};
fn main() {
let flat: BTreeMap
let mut expected: BTreeMap
assert_eq!(expected, flat); } ```
Doug Tangren (softprops) 2018