kg-tree 0.2.1

Generic object tree with Opath query language, similar to XPath.
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;

pub mod json;
pub mod toml;
pub mod yaml;

#[inline]
fn is_non_alphanumeric(c: Option<char>) -> bool {
    match c {
        None => true,
        Some(c) => !c.is_alphanumeric(),
    }
}