名前空間
変種

operator==,!=,<,<=,>,>=,<=>(std::basic_string_view)

提供: cppreference.com
 
 
 
 
<tbody> </tbody>
ヘッダ <string_view> で定義
template< class CharT, class Traits > constexpr bool operator==( std::basic_string_view<CharT,Traits> lhs, std::basic_string_view<CharT,Traits> rhs ) noexcept;
(1) (C++17以上)
template< class CharT, class Traits > constexpr bool operator!=( std::basic_string_view<CharT,Traits> lhs, std::basic_string_view<CharT,Traits> rhs ) noexcept;
(2) (C++17以上)
(C++20未満)
template< class CharT, class Traits > constexpr bool operator<( std::basic_string_view<CharT,Traits> lhs, std::basic_string_view<CharT,Traits> rhs ) noexcept;
(3) (C++17以上)
(C++20未満)
template< class CharT, class Traits > constexpr bool operator<=( std::basic_string_view<CharT,Traits>