|  | Home | Libraries | People | FAQ | More | 
template< class Container, class SinglePassRange > Container& push_back(Container& target, const SinglePassRange& from);
            push_back all of the
            elements in the range from
            to the back of the container target.
          
            Defined in the header file boost/range/algorithm_ext/push_back.hpp
          
SinglePassRange is
                a model of the Single
                Pass Range Concept.
              Container supports
                insert at end().
              SinglePassRange's
                value type is convertible to Container's
                value type.
              
            Linear. distance(from)
            assignments are performed.