Check if input is available.
| 1016 | } |
| 1017 | /// Check if input is available. |
| 1018 | bool good() |
| 1019 | /// @returns true if a non-empty sequence of characters is available to get |
| 1020 | { |
| 1021 | return pos_ < len_ || Input::good(); |
| 1022 | } |
| 1023 | /// Check if input reached EOF. |
| 1024 | bool eof() |
| 1025 | /// @returns true if input is at EOF and no characters are available |
nothing calls this directly
no outgoing calls
no test coverage detected