| 286 | template <auto... xs> struct Tuple { |
| 287 | template <template <auto...> typename Y, auto... ys> |
| 288 | constexpr auto operator+(Y<ys...>) const noexcept { |
| 289 | return Tuple<xs..., ys...>{}; |
| 290 | } |
| 291 | template <template <auto> typename V, auto i> |
| 292 | constexpr auto operator[](V<i>) const noexcept { |
| 293 | return tfunc::Get<Tuple<xs...>, i>{}; |
nothing calls this directly
no outgoing calls
no test coverage detected