[#absl-operator_ge-03e0] = xref:absl.adoc[absl]::operator>= :relfileprefix: ../ :mrdocs: Compares two spans lexicographically. == Synopsis Declared in `<absl/types/span.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> constexpr bool operator>=( xref:absl/Span.adoc[Span<T const>] a, xref:absl/Span.adoc[Span<T>] b); ---- == Return Value `true` if `a` is not lexicographically less than `b`. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The left operand. | *b* | The right operand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#