| 517 | } // namespace _impl_ |
| 518 | |
| 519 | template <auto expr, typename Then, typename Else = Block<>> struct If { |
| 520 | template <typename Runtime> |
| 521 | using Run = |
| 522 | _impl_::Branch<static_cast<bool>(expr::Eval<Runtime, expr>::value), Then, |
| 523 | Else>::Result::template Run<Runtime>; |
| 524 | }; |
| 525 | |
| 526 | template <auto expr, typename Loop> struct While { |
| 527 | template <typename Runtime> |
nothing calls this directly
no outgoing calls
no test coverage detected