! @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 */
| 5319 | @return character read from the input |
| 5320 | */ |
| 5321 | int get() |
| 5322 | { |
| 5323 | ++chars_read; |
| 5324 | return current = ia->get_character(); |
| 5325 | } |
| 5326 | |
| 5327 | /*! |
| 5328 | @return character read from the input after ignoring all 'N' entries |
nothing calls this directly
no test coverage detected