mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
41 lines
1.2 KiB
ReStructuredText
41 lines
1.2 KiB
ReStructuredText
|
.. _sprout-string-basic_string-operator-greater:
|
||
|
###############################################################################
|
||
|
operator>
|
||
|
###############################################################################
|
||
|
|
||
|
Interface
|
||
|
========================================
|
||
|
.. sourcecode:: c++
|
||
|
|
||
|
template<typename T, std::size_t N1, std::size_t N2, typename Traits>
|
||
|
inline SPROUT_CONSTEXPR bool
|
||
|
operator>(sprout::basic_string<T, N1, Traits> const& lhs, sprout::basic_string<T, N2, Traits> const& rhs);
|
||
|
|
||
|
Returns
|
||
|
========================================
|
||
|
|
||
|
| true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise.
|
||
|
|
||
|
Examples
|
||
|
========================================
|
||
|
.. sourcecode:: c++
|
||
|
|
||
|
#include <sprout/string.hpp>
|
||
|
using namespace sprout;
|
||
|
|
||
|
SPROUT_STATIC_CONSTEXPR auto x = string<8>("homuhomu");
|
||
|
SPROUT_STATIC_CONSTEXPR auto y = string<8>("madocchi");
|
||
|
static_assert(y > x, "y is greater than x.");
|
||
|
|
||
|
Complexity
|
||
|
========================================
|
||
|
|
||
|
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||
|
|
||
|
Header
|
||
|
========================================
|
||
|
|
||
|
| ``sprout/string/comparison.hpp``
|
||
|
| Convenience header: ``sprout/string.hpp``
|
||
|
|