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