type NumParser<'a> = Box<dyn Fn(&str) -> Option<f64> + 'a>;
struct NumParser<'a>(/* private fields */);