[][src]Function lexpr::from_str_custom

pub fn from_str_custom(s: &str, options: Options) -> Result<Value>

Parse a value from a string slice representing a single S-expression.

let value = lexpr::from_str_custom("(a (nested) list)", lexpr::parse::Options::new());
println!("{:?}", value);