Lines Matching refs:right
13 bool operator==(string_view left, string_view right) { in operator ==() argument
14 if (left.length() != right.length()) { in operator ==()
17 return !string_view::traits_type::compare(left.data(), right.data(), left.length()); in operator ==()
20 bool operator!=(string_view left, string_view right) { in operator !=() argument
21 return !(left == right); in operator !=()
24 bool operator<(string_view left, string_view right) { in operator <() argument
25 int result = string_view::traits_type::compare(left.data(), right.data(), in operator <()
26 std::min(left.length(), right.length())); in operator <()
28 result = left.length() - right.length(); in operator <()
33 bool operator<=(string_view left, string_view right) { in operator <=() argument
34 return !(left > right); in operator <=()
37 bool operator>(string_view left, string_view right) { in operator >() argument
38 return right < left; in operator >()
41 bool operator>=(string_view left, string_view right) { in operator >=() argument
42 return !(left < right); in operator >=()