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

📄 std__pair.3

📁 Free C++ Standard Library
💻 3
字号:
.TH std::pair 3 "14 Sep 1999" "FREE_C++_STANDARD_LIBRARY" \" -*- nroff -*-.ad l.nh.SH NAMEstd::pair \- a template for heterogeneous pairs of values. It also provides a matching template function to simplify their construction. .SH SYNOPSIS.br.PP.SS Public Members.in +1c.ti -1c.RI "typedef T1 \fBfirst_type\fR".br.ti -1c.RI "typedef T2 \fBsecond_type\fR".br.ti -1c.RI "\fBpair\fR ()".br.ti -1c.RI "\fBpair\fR (const T1 &x,const T2 &y)".br.ti -1c.RI "template<class U, class V> \fBpair\fR<U, V> (const pair<U,V> &p)".br.ti -1c.RI "T1 \fBfirst\fR".br.ti -1c.RI "T2 \fBsecond\fR".br.in -1c.SH DETAILED DESCRIPTION.PP .SS template<class T1, class T2>  struct std::paira template for heterogeneous pairs of values. It also provides a matching template function to simplify their construction..PP.SH MEMBER TYPEDEF DOCUMENTATION.PP .SS template<class T1, class T2> typedef T1 std::pair<T1, T2>::first_type.PP.SS template<class T1, class T2> typedef T2 std::pair<T1, T2>::second_type.PP.SH MEMBER FUNCTION DOCUMENTATION.PP .SS template<class T1, class T2> std::pair<T1, T2>::pair<T1, T2> ().PP.nf: first(T1()), second(T2()).br                {.br                }.fi.SS template<class T1, class T2> std::pair<T1, T2>::pair<T1, T2> (const T1 & x, const T2 & y).PP.nf: first(x), second(y).br                {.br                }.fi.SS template<class T1, class T2>  template<class U, class V> std::pair<T1, T2>::pair<T1, T2> (const pair<U,V>& p).PP.nf: first(p.first), second(p.second).br                {.br                }.fi.SH MEMBER DATA DOCUMENTATION.PP .SS template<class T1, class T2> T1 std::pair<T1, T2>::first.PP.SS template<class T1, class T2> T2 std::pair<T1, T2>::second.PP.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 + -