namespace std {
template <class T, class Container>
bool operator!=(const queue<T, Container>& x, const queue<T, Container>& y);
}
概要
queue
の非等値比較を行う
戻り値
x.c != y.c
例
出力
false
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
false
true