PCL
|
Functions | |
template<class T , class R , class A > | |
bool | pcl::operator< (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::char_type c2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator< (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::const_c_string t2) noexcept |
template<class T , class R1 , class A1 , class R2 , class A2 > | |
bool | pcl::operator< (const GenericString< T, R1, A1 > &s1, const GenericString< T, R2, A2 > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator< (typename GenericString< T, R, A >::char_type c1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator< (typename GenericString< T, R, A >::const_c_string t1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator<= (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::char_type c2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator<= (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::const_c_string t2) noexcept |
template<class T , class R1 , class A1 , class R2 , class A2 > | |
bool | pcl::operator<= (const GenericString< T, R1, A1 > &s1, const GenericString< T, R2, A2 > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator<= (typename GenericString< T, R, A >::char_type c1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator<= (typename GenericString< T, R, A >::const_c_string t1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator== (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::char_type c2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator== (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::const_c_string t2) noexcept |
template<class T , class R1 , class A1 , class R2 , class A2 > | |
bool | pcl::operator== (const GenericString< T, R1, A1 > &s1, const GenericString< T, R2, A2 > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator== (typename GenericString< T, R, A >::char_type c1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator== (typename GenericString< T, R, A >::const_c_string t1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator> (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::char_type c2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator> (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::const_c_string t2) noexcept |
template<class T , class R1 , class A1 , class R2 , class A2 > | |
bool | pcl::operator> (const GenericString< T, R1, A1 > &s1, const GenericString< T, R2, A2 > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator> (typename GenericString< T, R, A >::char_type c1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator> (typename GenericString< T, R, A >::const_c_string t1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator>= (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::char_type c2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator>= (const GenericString< T, R, A > &s1, typename GenericString< T, R, A >::const_c_string t2) noexcept |
template<class T , class R1 , class A1 , class R2 , class A2 > | |
bool | pcl::operator>= (const GenericString< T, R1, A1 > &s1, const GenericString< T, R2, A2 > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator>= (typename GenericString< T, R, A >::char_type c1, const GenericString< T, R, A > &s2) noexcept |
template<class T , class R , class A > | |
bool | pcl::operator>= (typename GenericString< T, R, A >::const_c_string t1, const GenericString< T, R, A > &s2) noexcept |
|
inlinenoexcept |
Returns true iff a string s1 is less than a character c2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is less than a null-terminated string t2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is less than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a character c1 is less than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a null-terminated string t1 is less than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is less than or equal to a character c2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is less than or equal to a null-terminated string t2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is less than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a character c1 is less than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a null-terminated string t1 is less than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
|
inlinenoexcept |
Returns true iff a string s1 is greater than a character c2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is greater than a null-terminated string t2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is greater than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a character c1 is greater than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a null-terminated string t1 is greater than a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is greater than or equal to a character c2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is greater than or equal to a null-terminated string t2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a string s1 is greater than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a character c1 is greater than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.
|
inlinenoexcept |
Returns true iff a null-terminated string t1 is greater than or equal to a string s2. This function performs a character-to-character, locale-unaware comparison of numeric character values. See GenericString<>::CompareCodePoints() for more information.