utility.3
来自「Free C++ Standard Library」· 3 代码 · 共 52 行
3
52 行
.TH utility 3 "14 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-.ad l.nh.SH NAMEutility \- This header file contains some basic template functions and classes that are used throughout the rest of the library. .SH SYNOPSIS.br.PP.SS Namespaces.in +1c.ti -1c.RI "namespace \fBstd\fR".br.ti -1c.RI "namespace \fBstd::rel_ops\fR".br.in -1c.SS Compounds.in +1c.ti -1c.RI "struct \fBstd::pair\fR".br.in -1c.SH DETAILED DESCRIPTION.PP This header file contains some basic template functions and classes that are used throughout the rest of the library..PPHeader <utility> synopsis.PPnamespace \fBstd\fR { namespace rel_ops {template<class T> bool operator!=(const T &,const T &); template<class T> bool operator>(const T &,const T &); template<class T> bool operator<=(const T &,const T &); template<class T> bool operator>=(const T &,const T &); }.PPtemplate <class T1, class T2> struct pair;.PPtemplate <class T1, class T2> bool operator==(const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> bool operator< (const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> bool operator!=(const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> bool operator> (const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> bool operator>=(const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> bool operator<=(const pair<T1,T2>&, const pair<T1,T2>&);.PPtemplate <class T1, class T2> pair<T1,T2> make_pair(const T1&, const T2&); .PP.SH AUTHOR.PP Generated automatically by Doxygen for FREE_C++_STANDARD_LIBRARY from the source code.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?