[#boost-urls-grammar-operator_ge] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/grammar.adoc[grammar]::operator>= :relfileprefix: ../../../ :mrdocs: Compare two string views for greater than or equal == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/string_view_base.hpp#L1093[boost/url/grammar/string_view_base.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class S0, class S1> constexpr bool operator>=( S0 const& s0, S1 const& s1) noexcept requires is_match<S0, S1>::value; ---- == Description This function is only enabled if both arguments are convertible to `core::string_view` and at least one of the arguments is derived from `string_view_base`. == Return Value `true` if the first string is greater than or equal to the second, otherwise `false` == Parameters [cols=2] |=== | Name | Description | *s0* | The first string | *s1* | The second string |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#