|
SeqAn3 3.4.2-rc.1
The Modern C++ library for sequence analysis.
|
The underlying type of seqan3::views::repeat_n. More...
#include <seqan3/utility/views/repeat_n.hpp>
Public Member Functions | |
| template<typename value_t > | |
| constexpr auto | operator() (value_t &&value, size_t const count) const |
Creates a range of size count, where each element equals value. | |
The underlying type of seqan3::views::repeat_n.
Under the hood this delegates to views::repeat(value) | detail::take_exactly(count).
|
inlineconstexpr |
Creates a range of size count, where each element equals value.
| value_t | The type of value to repeat; must be std::copy_constructible. |
| [in] | value | The value to repeat. |
| [in] | count | The number of times to repeat value. |
count, where each element equals value.