The `Token_stream.unget` function in C++ allows the user to put back a token into the token stream. This function is useful in cases where the user wants to re-read the token that has been already read from the input stream. By using `unget`, the token is returned to the token stream, allowing further processing or re-reading.
C++ (Cpp) Token_stream::unget - 24 examples found. These are the top rated real world C++ (Cpp) examples of Token_stream::unget from package cpp-co-learning extracted from open source projects. You can rate examples to help us improve the quality of examples.