EMath++
Classes for mathematical concepts
|
Class that works as a token supplier for the Parser class. More...
Public Member Functions | |
Lexer (const std::string &input) noexcept | |
Standalone constructor for the Lexer class. | |
const Token | next () noexcept |
Function that returns the next Token in the input provided in the constructor. | |
~Lexer () noexcept=default | |
Default destructor. | |
Class that works as a token supplier for the Parser class.
The class consists of a public function for getting the next Token
Definition at line 689 of file interface.cpp.
|
inlinenoexcept |
Standalone constructor for the Lexer class.
input | A const reference to the std::string to tokenize. |
Definition at line 728 of file interface.cpp.
|
inlinenoexcept |
Function that returns the next Token in the input provided in the constructor.
Definition at line 733 of file interface.cpp.