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>
105 print_impl(stream, stream.flags2(), trace);
117 template <
typename stream_t>
130 template <
typename stream_t>
134 auto const & trace_dir = is_unicode ? unicode : csv;
136 stream << trace_dir[static_cast<size_t>(trace)];
Provides seqan3::add_enum_bitwise_operators.
Provides seqan3::debug_stream and related types.
trace_directions
The possible directions a trace can have. The values can be combined by the logical |-operator.
Definition trace_directions.hpp:30
@ none
The corresponding alignment coordinate will not be incrementable/decrementable.
@ carry_left_open
Carry bit for the last left open even if it is not the maximum value.
@ up
Trace comes from the above entry.
@ left
Trace comes from the left entry.
@ diagonal
Trace comes from the diagonal entry.
@ carry_up_open
Carry bit for the last up open even if it is not the maximum value.
@ left_open
Trace comes from the left entry, while opening the gap.
@ up_open
Trace comes from the above entry, while opening the gap.
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 internal SeqAn3 namespace.
Definition aligned_sequence_concept.hpp:26
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
constexpr void print_impl(stream_t &stream, fmtflags2 const flag, detail::trace_directions const trace) const
Prints the trace directions.
Definition trace_directions.hpp:131
Definition default_printer.hpp:50
Provides type traits for working with templates.