tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
back_insert_iterator.hpp File Reference

Go to the source code of this file.

Classes

struct  back_insert_iterator< Container >
 etl::back_insert_iterator is a LegacyOutputIterator that appends to a container for which it was constructed. The container's push_back() member function is called whenever the iterator (whether dereferenced or not) is assigned to. Incrementing the etl::back_insert_iterator is a no-op. More...
 

Namespaces

namespace  etl
 

Functions

template<typename Container>
constexpr auto back_inserter (Container &container) -> back_insert_iterator< Container >
 back_inserter is a convenience function template that constructs a back_insert_iterator for the container c with the type deduced from the type of the argument.