std::ios_base::iostate
Min standard notice:
Specifies stream state flags. It is a BitmaskType, the following constants are defined:
# Declarations
typedef /*implementation defined*/ iostate;
static constexpr iostate goodbit = 0;
static constexpr iostate badbit = /* implementation defined */
static constexpr iostate failbit = /* implementation defined */
static constexpr iostate eofbit = /* implementation defined */
# Example
This section is incompleteReason: no example