! @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 */
| 9887 | @return character read from the input |
| 9888 | */ |
| 9889 | char_int_type get() |
| 9890 | { |
| 9891 | ++chars_read; |
| 9892 | return current = ia.get_character(); |
| 9893 | } |
| 9894 | |
| 9895 | /*! |
| 9896 | @return character read from the input after ignoring all 'N' entries |
no test coverage detected