BioC++ core-0.7.0
The Modern C++ libraries for Bioinformatics.
 
Loading...
Searching...
No Matches
bio::ranges::back_insertable_with Concept Reference

Describes range types that can grow in amortised constant time by appending an element of type val_t. More...

#include <bio/ranges/concept.hpp>

Concept definition

template<typename rng_t, typename val_t>
concept bio::ranges::back_insertable_with = requires(rng_t & v) { v.push_back(std::declval<val_t>()); }
Describes range types that can grow in amortised constant time by appending an element of type val_t.
Definition: concept.hpp:66

Detailed Description

Describes range types that can grow in amortised constant time by appending an element of type val_t.

Template Parameters
rng_tThe container type.
val_tThe type to append to the container.