[#bsl-operator_gt-09] = xref:bsl.adoc[bsl]::operator> :relfileprefix: ../ :mrdocs: Return `true` if the value of the specified `lhs` queue is lexicographically greater than that of the specified `rhs` queue, and `false` otherwise. The value of queue `lhs` is lexicographically greater than that of queue `rhs` if `rhs` is lexicographically less than `lhs` (see `operator<`). This method requires that `operator<`, inducing a total order, be defined for `value_type`. Note that this operator returns `rhs < lhs`. == Synopsis Declared in `<bslstl_queue.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class VALUE, class CONTAINER> bool operator>( xref:bsl/queue-0a5.adoc[queue<VALUE, CONTAINER>] const& lhs, xref:bsl/queue-0a5.adoc[queue<VALUE, CONTAINER>] const& rhs); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#