MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / insert

Function insert

include/win/boost/container/vector.hpp:1893–1903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1891 #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
1892 template <class FwdIt>
1893 iterator insert(const_iterator pos, FwdIt first, FwdIt last
1894 , typename container_detail::disable_if_or
1895 < void
1896 , container_detail::is_convertible<FwdIt, size_type>
1897 , container_detail::is_input_iterator<FwdIt>
1898 >::type * = 0
1899 )
1900 {
1901 container_detail::insert_range_proxy<Allocator, FwdIt, T*> proxy(first);
1902 return this->priv_forward_range_insert(vector_iterator_get_ptr(pos), boost::container::iterator_distance(first, last), proxy);
1903 }
1904 #endif
1905
1906 //! <b>Requires</b>: p must be a valid iterator of *this. num, must

Callers

nothing calls this directly

Calls 5

vector_iterator_get_ptrFunction · 0.85
iterator_distanceFunction · 0.50
insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected