Home
last modified time | relevance | path

Searched defs:Bar (Results 1 – 1 of 1) sorted by relevance

/petsc/src/sys/tests/
H A Dex64.cxx76 struct Bar { struct
80 Bar() noexcept = default; argument
81 Bar(std::vector<int> x, std::string y) noexcept : x(std::move(x)), y(std::move(y)) { } in Bar() argument
83 bool operator==(const Bar &other) const noexcept { return x == other.x && y == other.y; } in operator ==() argument
84 …bool operator<(const Bar &other) const noexcept { return std::tie(x, y) < std::tie(other.x, other.… in operator <() argument
98 friend std::ostream &operator<<(std::ostream &oss, const Bar &b) noexcept in operator <<() argument