MCPcopy Create free account
hub / github.com/SheafificationOfG/based-cpp / operator+

Method operator+

gil/gil.impl.hpp:288–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

286template <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>{};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected