Macro fm_range_from
macro_rules! fm_range_from {
($field:expr, $low:expr, $high:expr) => { ... };
}Expand description
Create a FieldMatch with a range value, both inclusive.
use rapimt_core::{fm_range_from, r#match::raw_match::{FieldMatch, Match}};
let _ = fm_range_from!("sport", 80u16, 100u16);