! @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 */
| 11824 | @return character read from the input |
| 11825 | */ |
| 11826 | char_int_type get() |
| 11827 | { |
| 11828 | ++chars_read; |
| 11829 | return current = ia.get_character(); |
| 11830 | } |
| 11831 | |
| 11832 | /*! |
| 11833 | @return character read from the input after ignoring all 'N' entries |
no test coverage detected