macro_rules! sometimes_all {
({ $($conditions:tt)* }, $message:literal, { $($details:tt)* }) => { ... };
({ $($conditions:tt)* }, $message:literal) => { ... };
}Expand description
Asserts every named condition holds at least once, with per-name guidance.