 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
70 template <
typename out_t>
74 "The reference type of the input to views::convert is not convertible to out_t.");
77 return std::forward<decltype(in)>(in);
79 return static_cast<out_t>(
std::forward<decltype(in)>(in));
The SeqAn namespace for views.
Definition: view_to_simd.hpp:672
Resolves to std::ranges::explicitly_convertible_to<type1, type2>().
Provides concepts for core language types and relations that don't have concepts in C++20 (yet).
The concept std::convertible_to<From, To> specifies that an expression of the type and value category...
Adaptations of concepts from the Ranges TS.
const auto convert
A view that converts each element in the input range (implicitly or via static_cast).
Definition: convert.hpp:71
seqan3::type_list< trait_t< pack_t >... > transform
Apply a transformation trait to every type in the pack and return a seqan3::type_list of the results.
Definition: traits.hpp:307