26namespace seqan3::detail
30template <
typename char_t,
typename tuple_t, std::size_t... I>
31void print_tuple(debug_stream_type<char_t> & s, tuple_t && t, std::index_sequence<I...>
const &)
35 ((s << (I == 0 ?
"" :
",") <<
get<I>(t)), ...);
48template <tuple_like tuple_t>
61 template <
typename stream_t,
typename arg_t>
62 constexpr void operator()(stream_t & stream, arg_t && arg)
const
Core alphabet concept and free function/type trait wrappers.
Provides seqan3::debug_stream and related types.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
constexpr auto const & get(configuration< configs_t... > const &config) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
Definition configuration.hpp:412
constexpr void operator()(stream_t &stream, arg_t &&arg) const
Prints a tuple to a formatted output stream.
Definition tuple.hpp:62
Definition default_printer.hpp:51
Provides seqan3::tuple_like.