| 23 | namespace _impl_ { |
| 24 | |
| 25 | template <typename X> struct Len; |
| 26 | |
| 27 | template <template <auto...> typename X, auto... xs> struct Len<X<xs...>> { |
| 28 | using Result = type::Value<sizeof...(xs)>; |
nothing calls this directly
no outgoing calls
no test coverage detected