?? eval.hpp
字號:
/** * \file eval.hpp * * Encapsulates the interface for the expression evaluator function. */#ifndef EVAL_HPP#define EVAL_HPP#include "cons.hpp"using namespace std;/** * \brief Evaluate the expression tree whose root is pointed to by c * (error if c does not hold a well-formed expression). * * \return The value resulting from evaluating the expression. */Cell* eval(Cell* const c);#endif // EVAL_HPP
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -