| 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 |
nothing calls this directly
no test coverage detected