macro_rules! is_less_than {
($val:ident) => { ... };
($val:expr_2021) => { ... };
}Expand description
Creates a closure that reports whether each input is less than a supplied value.
The comparison target remains inside the closure body and is evaluated on every call.