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

📄 namespace_std__rel_ops.3

📁 Free C++ Standard Library
💻 3
字号:
.TH std::rel_ops 3 "14 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-.ad l.nh.SH NAMEstd::rel_ops \- .SH SYNOPSIS.br.PP.SS Functions.in +1c.ti -1c.RI "template<class T> bool \fBoperator!=\fR (const T &x, const T &y)".br.ti -1c.RI "template<class T> bool \fBoperator>\fR (const T &x, const T &y)".br.ti -1c.RI "template<class T> bool \fBoperator<=\fR (const T &x, const T &y)".br.ti -1c.RI "template<class T> bool \fBoperator>=\fR (const T&, const T&)".br.in -1c.SH FUNCTION DOCUMENTATION.PP .SS template<class T> bool std::rel_ops::operator!= (const T & x, const T & y).PP.nf{.br                        return !(x == y);.br                }.fi.SS template<class T> bool std::rel_ops::operator> (const T & x, const T & y).PP.nf{.br                        return y < x;.br                }.fi.SS template<class T> bool std::rel_ops::operator<= (const T & x, const T & y).PP.nf{.br                        return !(y < x);.br                }.fi.SS template<class T> bool std::rel_ops::operator>= (const T &, const T &).PP.nf{.br                        return !(x < 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 + -