| 317 | } |
| 318 | |
| 319 | friend bool operator<(const FixedArray& lhs, const FixedArray& rhs) { |
| 320 | return std::lexicographical_compare( |
| 321 | lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); |
| 322 | } |
| 323 | |
| 324 | friend bool operator>(const FixedArray& lhs, const FixedArray& rhs) { |
| 325 | return rhs < lhs; |