Searched refs:construct_at (Results 1 – 3 of 3) sorted by relevance
81 using ArrayTraits<T>::construct_at;245 return *construct_at(it, std::move(element)); in replace()256 const iterator it = construct_at(end(), std::forward<Args>(args)...); in emplace_back()293 construct_at(it, std::move(back())); in unstable_erase()304 construct_at(begin() + I, std::forward<E>(element));326 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...);335 construct_at(begin() + I, std::move(std::get<ArgIndex + Indices>(tuple))...); in StaticVector()
272 using ArrayTraits<T>::construct_at;330 return *construct_at(it, std::move(element)); in replace()
45 static pointer construct_at(const_iterator it, Args&&... args) { in construct_at() function