Searched refs:Foo (Results 1 – 4 of 4) 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() argument52 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 <<() argument74 MAKE_HASHABLE(Foo, t.x, t.y)668 const auto foo_printer = [](const Foo &key, std::string &buf) { in main()701 auto ret = Foo{make_int(), make_double()}; in main()[all …]
274 .seealso: `Foo()`297 -.seealso: Foo()298 +.seealso: `Foo()`302 .seealso: Foo()311 -.seealso: `Foo()312 +.seealso: `Foo()`316 .seealso: `Foo()598 .seealso: `Foo`
26 class Foo { class
65 PetscErrorCode Foo(PetscInt *i)78 PetscErrorCode Foo(MyStruct *str)