| 524 | |
| 525 | template <class I, class T, std::size_t... Ns> |
| 526 | constexpr auto extends_impl(std::index_sequence<Ns...>) noexcept { |
| 527 | (void(typename mappings<T, Ns + 1>::template set<decltype( |
| 528 | get(mappings<I, Ns + 1>{}))>{}), |
| 529 | ...); |
| 530 | } |
| 531 | |
| 532 | template <class T, class TExpr, class... Ts> |
| 533 | constexpr auto requires_impl(type_list<TExpr, Ts...>) |
nothing calls this directly
no outgoing calls
no test coverage detected