The stream sub-module contains data structures and functions for streaming and tokenization.
More...
|
|
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.
|
| |
The stream sub-module contains data structures and functions for streaming and tokenization.
◆ 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.
|