| 1683 | } |
| 1684 | |
| 1685 | bool Value::CZString::operator<(const CZString& other) const { |
| 1686 | if (cstr_) |
| 1687 | return strcmp(cstr_, other.cstr_) < 0; |
| 1688 | return index_ < other.index_; |
| 1689 | } |
| 1690 | |
| 1691 | bool Value::CZString::operator==(const CZString& other) const { |
| 1692 | if (cstr_) |