26 enum struct trace_directions : uint8_t
49 constexpr
bool add_enum_bitwise_operators<seqan3::detail::trace_directions> =
true;
73 template <
typename char_t>
76 static char const * unicode[32]{
"↺",
"↖",
"↑",
"↖↑",
"⇡",
"↖⇡",
"↑⇡",
"↖↑⇡",
77 "←",
"↖←",
"↑←",
"↖↑←",
"⇡←",
"↖⇡←",
"↑⇡←",
"↖↑⇡←",
78 "⇠",
"↖⇠",
"↑⇠",
"↖↑⇠",
"⇡⇠",
"↖⇡⇠",
"↑⇡⇠",
"↖↑⇡⇠",
79 "←⇠",
"↖←⇠",
"↑←⇠",
"↖↑←⇠",
"⇡←⇠",
"↖⇡←⇠",
"↑⇡←⇠",
"↖↑⇡←⇠"};
81 static char const * csv[32]{
"N",
"D",
"U",
"DU",
"u",
"Du",
"Uu",
"DUu",
82 "L",
"DL",
"UL",
"DUL",
"uL",
"DuL",
"UuL",
"DUuL",
83 "l",
"Dl",
"Ul",
"DUl",
"ul",
"Dul",
"Uul",
"DUul",
84 "Ll",
"DLl",
"ULl",
"DULl",
"uLl",
"DuLl",
"UuLl",
"DUuLl"};
87 auto const & trace_dir = is_unicode ? unicode : csv;
89 s << trace_dir[static_cast<size_t>(trace)];
Provides seqan3::add_enum_bitwise_operators.
fmtflags2 flags2() const
Retrieve the format flags from the stream.
Definition: debug_stream_type.hpp:198
Enables use of non-ASCII UTF8 characters in formatted output.
Definition: debug_stream_type.hpp:31
Provides seqan3::debug_stream and related types.
No flag is set.
Definition: debug_stream_type.hpp:30
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
A "pretty printer" for most SeqAn data structures and related types.
Definition: debug_stream_type.hpp:70