Macro filter_op

Source
macro_rules! filter_op {
    (and, $($filters:expr),*) => { ... };
    (or, $($filters:expr),*) => { ... };
    (not, $filter:expr) => { ... };
    ($filter:expr) => { ... };
}
Expand description

Helper macro for creating filter operators