#include "FieldCode.hpp"
#include <cstdint>
#include <iostream>
Go to the source code of this file.
|
std::ostream & | operator<< (std::ostream &strm, const Field &field) |
| Operator to display a field information. More...
|
|
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
strm, |
|
|
const Field & |
field |
|
) |
| |
Operator to display a field information.
- Parameters
-
strm | - ostream |
field | - field |
- Returns
- std::ostream& - ostream
5 strm <<
'[' << (field.
flagged() ?
'f' :
'_') << (field.
covered() ?
'c' :
'u')
6 << (
int) field.
val() <<
']';