1 #ifndef __SCHEME_TYPES_OPS
2 #define __SCHEME_TYPES_OPS
5 bool isOpPlus(
const std::string& token) {
return token ==
"+"; }
6 bool isOpMinus(
const std::string& token) {
return token ==
"-"; }
7 bool isOpMultiply(
const std::string& token) {
return token ==
"*"; }
8 bool isOpDevide(
const std::string& token) {
return token ==
"/"; }
bool isOpPlus(const std::string &token)
bool isOpMinus(const std::string &token)
bool isOpDevide(const std::string &token)
bool isOpMultiply(const std::string &token)