Searched defs:Foo (Results 1 – 2 of 2) sorted by relevance
45 struct Foo { struct49 constexpr Foo() noexcept = default; argument50 constexpr Foo(int x, double y) noexcept : x(x), y(y) { } in Foo() function52 bool operator==(const Foo &other) const noexcept { return x == other.x && y == other.y; } in operator ==() argument53 bool operator!=(const Foo &other) const noexcept { return !(*this == other); } in operator !=() argument54 …bool operator<(const Foo &other) const noexcept { return std::tie(x, y) < std::tie(other.x, other.… in operator <() argument63 friend std::ostream &operator<<(std::ostream &oss, const Foo &f) noexcept in operator <<() argument
26 class Foo { class