 |
SeqAn3
3.0.2
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
19 namespace seqan3::detail
35 template <
typename value_t>
36 constexpr
auto operator()(value_t && value,
size_t const count)
const
38 static_assert(std::copy_constructible<value_t>,
"The value passed to repeat_n must be copy constructible.");
94 constexpr
inline auto repeat_n = detail::repeat_n_fn{};
The SeqAn namespace for views.
Definition: view_iota_simd.hpp:218
Provides the views::repeat_view.
constexpr auto take_exactly
A view adaptor that returns the first size elements from the underlying range (or less if the underly...
Definition: take_exactly.hpp:77
Provides seqan3::views::take_exactly and seqan3::views::take_exactly_or_throw.
constexpr detail::repeat_fn repeat
A view factory that repeats a given value infinitely.
Definition: repeat.hpp:355
constexpr auto repeat_n
A view factory that repeats a given value n times.
Definition: repeat_n.hpp:94
constexpr ptrdiff_t count
Count the occurrences of a type in a pack.
Definition: traits.hpp:134