MIXAL
Classes | Enumerations | Functions
expression.h File Reference

To parse the expressions. More...

#include <string>
#include <vector>
#include <unordered_map>
#include <unordered_set>
#include "errors.h"

Go to the source code of this file.

Classes

struct  mixal::Atomic
 
struct  mixal::AtomicValue
 
class  mixal::Expression
 

Enumerations

enum  mixal::AtomicType { mixal::AtomicType::INTEGER, mixal::AtomicType::SYMBOL, mixal::AtomicType::ASTERISK }
 
enum  mixal::Operation {
  mixal::Operation::ADD, mixal::Operation::SUBTRACT, mixal::Operation::MULTIPLY, mixal::Operation::FLOOR_DIV,
  mixal::Operation::FIELD
}
 

Functions

std::ostream & mixal::operator<< (std::ostream &out, Operation operation)
 

Detailed Description

To parse the expressions.

Definition in file expression.h.

Enumeration Type Documentation

◆ AtomicType

enum mixal::AtomicType
strong

Type of atomics.

Definition at line 18 of file expression.h.

18  {
19  INTEGER,
20  SYMBOL,
21  ASTERISK,
22 };

◆ Operation

enum mixal::Operation
strong

Types of operations in expressions.

Definition at line 90 of file expression.h.

90  {
91  ADD,
92  SUBTRACT,
93  MULTIPLY,
94  FLOOR_DIV,
95  // FLOAT_DIV, /**< `//` */
96  FIELD,
97 };

Function Documentation

◆ operator<<()

std::ostream & mixal::operator<< ( std::ostream &  out,
Operation  operation 
)

Output the symbol of the operation.

Definition at line 335 of file expression.cpp.

335  {
336  switch (operation) {
337  case Operation::ADD: out << '+'; break;
338  case Operation::SUBTRACT: out << '-'; break;
339  case Operation::MULTIPLY: out << '*'; break;
340  case Operation::FLOOR_DIV: out << '/'; break;
341  case Operation::FIELD: out << ':'; break;
342  }
343  return out;
344 }

References mixal::operator<<().

Referenced by mixal::operator<<().