namespace std {
template <class T, class Container>
bool operator>(const queue<T, Container>& x, const queue<T, Container>& y);
}
概要
queue
において、左辺が右辺より大きいかを判定する。
戻り値
x.c > y.c
例
出力
true
namespace std {
template <class T, class Container>
bool operator>(const queue<T, Container>& x, const queue<T, Container>& y);
}
queue
において、左辺が右辺より大きいかを判定する。
x.c > y.c
true