SeqAn3  3.0.3
The Modern C++ library for sequence analysis.
Stream

The stream sub-module contains data structures and functions for streaming and tokenization. More...

+ Collaboration diagram for Stream:

Classes

interface  input_stream_over
 Concept for input streams. More...
 
interface  output_stream_over
 Concept for output streams. More...
 

Enumerations

enum  seqan3::fmtflags2 { seqan3::none = 0 , seqan3::utf8 = 1 , seqan3::small_int_as_number = 1 << 1 , default_ = small_int_as_number }
 Flags that change the behaviour of the seqan3::debug_stream. More...
 

Variables

debug_stream_type seqan3::debug_stream {std::cerr}
 A global instance of seqan3::debug_stream_type.
 

Detailed Description

The stream sub-module contains data structures and functions for streaming and tokenization.

Enumeration Type Documentation

◆ fmtflags2

Flags that change the behaviour of the seqan3::debug_stream.

See also
seqan3::enum_bitwise_operators enables combining enum values.
Enumerator
none 

No flag is set.

utf8 

Enables use of non-ASCII UTF8 characters in formatted output.

small_int_as_number 

int8_t and uint8_t are often aliases for signed char and unsigned char resp. resulting in chars being printed; this options prints them as numbers.