Lines Matching defs:insert
93 // Positional insert and erase:
94 // void insert(const_iterator pos, size_type count, const T& value);
95 // void insert(const_iterator pos,
97 // iterator insert(const_iterator pos, const T& value);
98 // iterator insert(const_iterator pos, T&& value);
103 // End insert and erase:
676 // The implementation of insert isn't optimized as much as it could be. If
684 void insert(const_iterator pos, size_type count, const T& value) {
687 // Optimize insert at the beginning.
711 insert(const_iterator pos, InputIterator first, InputIterator last) {
722 // Optimize insert at the beginning, nothing needs to be shifted and the
746 iterator insert(const_iterator pos, const T& value) {
749 iterator insert(const_iterator pos, T&& value) {
756 // Optimize insert at beginning which doesn't require shifting.