19namespace seqan3::detail
29enum struct trace_directions : uint8_t
44 carry_up_open = 0b0'0010,
46 carry_left_open = 0b0'1000
58inline constexpr bool add_enum_bitwise_operators<seqan3::detail::trace_directions> =
true;
82 "↺",
"↖",
"↑",
"↖↑",
"⇡",
"↖⇡",
"↑⇡",
"↖↑⇡",
"←",
"↖←",
"↑←",
"↖↑←",
"⇡←",
"↖⇡←",
"↑⇡←",
"↖↑⇡←",
83 "⇠",
"↖⇠",
"↑⇠",
"↖↑⇠",
"⇡⇠",
"↖⇡⇠",
"↑⇡⇠",
"↖↑⇡⇠",
"←⇠",
"↖←⇠",
"↑←⇠",
"↖↑←⇠",
"⇡←⇠",
"↖⇡←⇠",
"↑⇡←⇠",
"↖↑⇡←⇠"};
87 "N",
"D",
"U",
"DU",
"u",
"Du",
"Uu",
"DUu",
"L",
"DL",
"UL",
"DUL",
"uL",
"DuL",
"UuL",
"DUuL",
88 "l",
"Dl",
"Ul",
"DUl",
"ul",
"Dul",
"Uul",
"DUul",
"Ll",
"DLl",
"ULl",
"DULl",
"uLl",
"DuLl",
"UuLl",
"DUuLl"};
101 template <
typename stream_t>
102 requires detail::is_type_specialisation_of_v<stream_t, debug_stream_type>
117 template <
typename stream_t>
130 template <
typename stream_t>
Provides seqan3::add_enum_bitwise_operators.
A "pretty printer" for most SeqAn data structures and related types.
Definition debug_stream_type.hpp:79
fmtflags2 flags2() const
Retrieve the format flags from the stream.
Definition debug_stream_type.hpp:202
Provides seqan3::debug_stream and related types.
fmtflags2
Flags that change the behaviour of the seqan3::debug_stream.
Definition debug_stream_type.hpp:32
@ utf8
Enables use of non-ASCII UTF8 characters in formatted output.
@ flag
The alignment flag (bit information), uint16_t value.
The main SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
constexpr void operator()(stream_t &stream, detail::trace_directions const trace) const
Prints the trace directions into the given stream.
Definition trace_directions.hpp:103
constexpr void operator()(stream_t &stream, detail::trace_directions const trace) const
Prints the trace directions into the given stream.
Definition trace_directions.hpp:118
Definition default_printer.hpp:50
Provides type traits for working with templates.