⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 namespace_std.3

📁 Free C++ Standard Library
💻 3
字号:
.TH std 3 "16 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-.ad l.nh.SH NAMEstd \- .SH SYNOPSIS.br.PP.SS Compounds.in +1c.ti -1c.RI "class \fBvector\fR".br.in -1c.SS Functions.in +1c.ti -1c.RI "template<class T, class Allocator> bool \fBoperator==\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> bool \fBoperator<\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> bool \fBoperator!=\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> bool \fBoperator>\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> bool \fBoperator>=\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> bool \fBoperator<=\fR (const vector<T,Allocator> &x, const vector<T,Allocator> &y)".br.ti -1c.RI "template<class T, class Allocator> void \fBswap\fR (vector<T,Allocator> &x, vector<T,Allocator>& y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator==\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator<\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator!=\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator>\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator>=\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> bool \fBoperator<=\fR (const vector<bool,Allocator> &x, const vector<bool,Allocator> &y)".br.ti -1c.RI "template<class Allocator> void \fBswap\fR (vector<bool,Allocator> &x, vector<bool,Allocator> &y)".br.in -1c.SH FUNCTION DOCUMENTATION.PP .SS template<class T, class Allocator> bool std::operator== (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return x.size() == y.size() && equal(x.begin(),x.end(),y.begin());.br        }.fi.SS template<class T, class Allocator> bool std::operator< (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end());.br        }.fi.SS template<class T, class Allocator> bool std::operator!= (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return !(x == y);.br        }.fi.SS template<class T, class Allocator> bool std::operator> (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return y < x;.br        }.fi.SS template<class T, class Allocator> bool std::operator>= (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return !(x < y);.br        }.fi.SS template<class T, class Allocator> bool std::operator<= (const vector<T,Allocator>& x, const vector<T,Allocator>& y).PP.nf{.br                return !(y < x);.br        }.fi.SS template<class T, class Allocator> void std::swap (vector<T,Allocator>& x, vector<T,Allocator>& y).PP.nf{.br                x.swap(y);.br        }.fi.SS template<class Allocator> bool std::operator== (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return x.size() == y.size() && equal(x.begin(),x.end(),y.begin());.br        }.fi.SS template<class Allocator> bool std::operator< (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return lexicographical_compare(x.begin(), x.end(), y.begin(), y.end());         .br        }.fi.SS template<class Allocator> bool std::operator!= (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return !(x == y);               .br        }.fi.SS template<class Allocator> bool std::operator> (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return y < x;.br        }.fi.SS template<class Allocator> bool std::operator>= (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return !(x < y);.br        }.fi.SS template<class Allocator> bool std::operator<= (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y).PP.nf{.br                return !(y < x);.br        }.fi.SS template<class Allocator> void std::swap (vector<bool,Allocator>& x, vector<bool,Allocator>& y).PP.nf{.br                x.swap(y);.br        }.fi.SH AUTHOR.PP Generated automatically by Doxygen for FREE_C++_STANDARD_LIBRARY from the source code.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -