| 53 | template <typename... Ts> Bundle(Ts... ts) -> Bundle<Ts...>; |
| 54 | |
| 55 | constexpr bool operator==(Bundle<> const &, Bundle<> const &) { return true; } |
| 56 | template <typename... Ts> |
| 57 | requires(sizeof...(Ts) > 0) |
| 58 | constexpr bool operator==(Bundle<Ts...> const &lhs, Bundle<Ts...> const &rhs) { |
nothing calls this directly
no outgoing calls
no test coverage detected