| 8629 | `if_(pred)[p]`, `p` is only applied if `pred` is true. */ |
| 8630 | template<typename Predicate> |
| 8631 | constexpr auto if_(Predicate pred) noexcept |
| 8632 | { |
| 8633 | return if_directive<Predicate>{pred}; |
| 8634 | } |
| 8635 | |
| 8636 | namespace detail { |
| 8637 | template<typename SwitchValue, typename Value> |
no outgoing calls
no test coverage detected