36 template <
typename rng_t>
37 SEQAN3_CONCEPT debug_stream_range_guard =
53 template <std::ranges::range rng_t,
typename char_t>
54 constexpr
bool reference_type_is_streamable_v =
false;
57 template <std::ranges::range rng_t,
typename char_t>
58 requires requires (reference_t<rng_t> l, debug_stream_type<char_t> s) { { s << l }; }
59 constexpr
bool reference_type_is_streamable_v<rng_t, char_t> =
true;
87 template <std::ranges::input_range rng_t,
typename char_t>
90 requires detail::debug_stream_range_guard<rng_t>
93 static_assert(detail::reference_type_is_streamable_v<rng_t, char_t>,
94 "The reference type of the passed range cannot be streamed into the debug_stream.");
Provides seqan3::debug_stream and related types.
The main SeqAn3 namespace.
Adaptations of concepts from the Ranges TS.
Definition: aligned_sequence_concept.hpp:36
The generic alphabet concept that covers most data types used in ranges.
Core alphabet concept and free function/type trait wrappers.
Meta-header for the adaptation submodule; includes all headers from alphabet/adaptation/.
Provides various transformation traits used by the range module.
typename reference< t >::type reference_t
Shortcut for seqan3::reference (transformation_trait shortcut).
Definition: pre.hpp:77
A "pretty printer" for most SeqAn data structures and related types.
Definition: debug_stream_type.hpp:70
The concept std::same_as<T, U> is satisfied if and only if T and U denote the same type...