SeqAn3  3.0.1
The Modern C++ library for sequence analysis.
stream_REMOVEME

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

+ Collaboration diagram for stream_REMOVEME:

Classes

interface  input_stream_over
 Concept for input streams. More...
 
interface  output_stream_over
 Concept for output streams. More...
 
interface  stream_REMOVEME
 Concept for i/o streams permitting both directions. More...
 

Typedefs

using seqan3::ostream_iterator = ::ranges::ostream_iterator
 Alias for ranges::ostream_iterator. Writes successive elements onto the output stream from which it was constructed.
 
using seqan3::ostreambuf_iterator = ::ranges::ostreambuf_iterator
 Alias for ranges::ostreambuf_iterator. Writes successive characters onto the output stream from which it was constructed.
 

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.

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.