operator==,!=,<,<=,>,>=(std::basic_string_view) (3) - Linux Manuals
operator==,!=,<,<=,>,>=(std::basic_string_view): operator==,!=,<,<=,>,>=(std::basic_string_view)
Command to display operator==,!=,<,<=,>,>=(std::basic_string_view)
manual in Linux: $ man 3 operator==,!=,<,<=,>,>=(std::basic_string_view)
NAME
operator==,!=,<,<=,>,>=(std::basic_string_view) - operator==,!=,<,<=,>,>=(std::basic_string_view)
Synopsis
Defined in header <string_view>
template< class CharT, class Traits >
constexpr bool operator==( basic_string_view <CharT,Traits> lhs, (1) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
template< class CharT, class Traits >
constexpr bool operator!=( basic_string_view <CharT,Traits> lhs, (2) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
template< class CharT, class Traits >
constexpr bool operator<( basic_string_view <CharT,Traits> lhs, (3) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
template< class CharT, class Traits >
constexpr bool operator<=( basic_string_view <CharT,Traits> lhs, (4) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
template< class CharT, class Traits >
constexpr bool operator>( basic_string_view <CharT,Traits> lhs, (5) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
template< class CharT, class Traits >
constexpr bool operator>=( basic_string_view <CharT,Traits> lhs, (6) (since C++17)
basic_string_view <CharT,Traits> rhs ) noexcept;
Compares two views.
All comparisons are done via the compare() member function (which itself is defined in terms of Traits::compare()):
* Two views are equal if both the size of lhs and rhs are equal and each character in lhs has an equivalent character in rhs at the same position.
* The ordering comparisons are done lexicographically -- the comparison is performed by a function equivalent to std::lexicographical_compare.
The implementation shall provide sufficient additional constexpr and noexcept overloads of these functions so that a basic_string_view<CharT,Traits> object sv may be compared to another object t with an implicit conversion to basic_string_view<CharT,Traits>, with semantics identical to comparing sv and basic_string_view<CharT,Traits>(t).
Parameters
lhs, rhs - views to compare
Return value
true if the corresponding comparison holds, false otherwise.
Complexity
Linear in the size of the views.
Pages related to operator==,!=,<,<=,>,>=(std::basic_string_view)
- operator==,!=,<,<=,>,>=(std::basic_string) (3) - operator==,!=,<,<=,>,>=(std::basic_string)
- operator==,!=,<,<=,>,>=(std::array) (3) - operator==,!=,<,<=,>,>=(std::array)
- operator==,!=,<,<=,>,>=(std::chrono::duration) (3) - operator==,!=,<,<=,>,>=(std::chrono::duration)
- operator==,!=,<,<=,>,>=(std::deque) (3) - operator==,!=,<,<=,>,>=(std::deque)
- operator==,!=,<,<=,>,>=(std::experimental::basic_string_view) (3) - operator==,!=,<,<=,>,>=(std::experimental::basic_string_view)
- operator==,!=,<,<=,>,>=(std::experimental::filesystem::path) (3) - operator==,!=,<,<=,>,>=(std::experimental::filesystem::path)
- operator==,!=,<,<=,>,>=(std::experimental::observer_ptr) (3) - operator==,!=,<,<=,>,>=(std::experimental::observer_ptr)
- operator==,!=,<,<=,>,>=(std::experimental::optional) (3) - operator==,!=,<,<=,>,>=(std::experimental::optional)
- operator==,!=,<,<=,>,>=(std::experimental::propagate_const) (3) - operator==,!=,<,<=,>,>=(std::experimental::propagate_const)
- operator==,!=,<,<=,>,>=(std::filesystem::path) (3) - operator==,!=,<,<=,>,>=(std::filesystem::path)
- operator==,!=,<,<=,>,>=(std::forward_list) (3) - operator==,!=,<,<=,>,>=(std::forward_list)
- operator==,!=,<,<=,>,>=(std::list) (3) - operator==,!=,<,<=,>,>=(std::list)
- operator==,!=,<,<=,>,>=(std::map) (3) - operator==,!=,<,<=,>,>=(std::map)
- operator==,!=,<,<=,>,>=(std::multimap) (3) - operator==,!=,<,<=,>,>=(std::multimap)
- operator==,!=,<,<=,>,>=(std::multiset) (3) - operator==,!=,<,<=,>,>=(std::multiset)
- operator==,!=,<,<=,>,>=(std::optional) (3) - operator==,!=,<,<=,>,>=(std::optional)
- operator==,!=,<,<=,>,>=(std::pair) (3) - operator==,!=,<,<=,>,>=(std::pair)
- operator==,!=,<,<=,>,>=(std::queue) (3) - operator==,!=,<,<=,>,>=(std::queue)
- operator==,!=,<,<=,>,>=(std::set) (3) - operator==,!=,<,<=,>,>=(std::set)
- operator==,!=,<,<=,>,>=(std::stack) (3) - operator==,!=,<,<=,>,>=(std::stack)
- operator==,!=,<,<=,>,>=(std::sub_match) (3) - operator==,!=,<,<=,>,>=(std::sub_match)
- operator==,!=,<,<=,>,>=(std::thread::id) (3) - operator==,!=,<,<=,>,>=(std::thread::id)
- operator==,!=,<,<=,>,>=(std::time_point) (3) - operator==,!=,<,<=,>,>=(std::time_point)
- operator==,!=,<,<=,>,>=(std::tuple) (3) - operator==,!=,<,<=,>,>=(std::tuple)
- operator==,!=,<,<=,>,>=(std::unique_ptr) (3) - operator==,!=,<,<=,>,>=(std::unique_ptr)
- operator==,!=,<,<=,>,>=(std::valarray) (3) - operator==,!=,<,<=,>,>=(std::valarray)
- operator==,!=,<,<=,>,>=(std::variant) (3) - operator==,!=,<,<=,>,>=(std::variant)
- operator==,!=,<,<=,>,>=(std::vector) (3) - operator==,!=,<,<=,>,>=(std::vector)
- operator==,!=,<(std::error_condition) (3) - operator==,!=,<(std::error_condition)