Searched defs:Bar (Results 1 – 1 of 1) sorted by relevance
76 struct Bar { struct80 Bar() noexcept = default; argument81 Bar(std::vector<int> x, std::string y) noexcept : x(std::move(x)), y(std::move(y)) { } in Bar() argument83 bool operator==(const Bar &other) const noexcept { return x == other.x && y == other.y; } in operator ==() argument84 …bool operator<(const Bar &other) const noexcept { return std::tie(x, y) < std::tie(other.x, other.… in operator <() argument98 friend std::ostream &operator<<(std::ostream &oss, const Bar &b) noexcept in operator <<() argument