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