()
| 630 | } |
| 631 | |
| 632 | pub fn valid_examples() -> &'static Vec<(&'static str, bool)> { |
| 633 | static VALID_EXAMPLES_ONCE: OnceLock<Vec<(&'static str, bool)>> = OnceLock::new(); |
| 634 | VALID_EXAMPLES_ONCE.get_or_init(|| examples().iter().copied().filter(|s| s.1).collect()) |
| 635 | } |