Searched defs:BigType (Results 1 – 1 of 1) sorted by relevance
531 struct BigType { struct532 BigType() : BigType(0) {} in BigType() function533 explicit BigType(int x) { std::iota(values.begin(), values.end(), x); } in BigType() function535 void Copy(const BigType& other) { in Copy()545 BigType(const BigType& other) { Copy(other); } in BigType() argument546 BigType& operator=(const BigType& other) { in operator =()552 bool operator<(const BigType& other) const { in operator <()557 bool operator==(const BigType& other) const { in operator ==()570 std::array<int64_t, Size> values;