Lines Matching refs:P
145 template <typename P>
146 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
147 std::pair<iterator, bool>>::type insert( P&& value ) in insert()
149 return this->emplace(std::forward<P>(value)); in insert()
152 template <typename P>
153 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
154 iterator>::type insert( const_iterator hint, P&& value ) in insert()
156 return this->emplace_hint(hint, std::forward<P>(value)); in insert()
262 template <typename P>
263 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
264 std::pair<iterator, bool>>::type insert( P&& value ) in insert()
266 return this->emplace(std::forward<P>(value)); in insert()
269 template <typename P>
270 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
271 iterator>::type insert( const_iterator hint, P&& value ) in insert()
273 return this->emplace_hint(hint, std::forward<P>(value)); in insert()