! @brief get next character from the input This function provides the interface to the used input adapter. It does not throw in case the input reached EOF, but returns a -'ve valued `std::char_traits ::eof()` in that case. @return character read from the input */
| 11828 | @return character read from the input |
| 11829 | */ |
| 11830 | char_int_type get() |
| 11831 | { |
| 11832 | ++chars_read; |
| 11833 | return current = ia.get_character(); |
| 11834 | } |
| 11835 | |
| 11836 | /*! |
| 11837 | @return character read from the input after ignoring all 'N' entries |
no test coverage detected