! @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 */
| 6947 | @return character read from the input |
| 6948 | */ |
| 6949 | int get() |
| 6950 | { |
| 6951 | ++chars_read; |
| 6952 | return current = ia->get_character(); |
| 6953 | } |
| 6954 | |
| 6955 | /*! |
| 6956 | @return character read from the input after ignoring all 'N' entries |
nothing calls this directly
no test coverage detected