Home | History | Annotate | Download | only in bits

Lines Matching refs:second

70       typedef _T2 second_type;   ///<  @c second_type is the second bound type
73 _T2 second; ///< @c second is a copy of the second object
77 /** The default constructor creates @c first and @c second using their
80 : first(), second() { }
84 : first(__a), second(__b) { }
90 second(std::forward<_U2>(__y)) { }
94 second(std::move(__p.second)) { }
101 second(__p.second) { }
107 second(std::move(__p.second)) { }
113 second(std::forward<_Arg0>(__arg0),
120 second = std::move(__p.second);
129 second = std::move(__p.second);
138 swap(second, __p.second);
147 { return __x.first == __y.first && __x.second == __y.second; }
154 || (!(__y.first < __x.first) && __x.second < __y.second); }
203 * @param y The second object.