#include <mutable/io/Reader.hpp>
#include "backend/Interpreter.hpp"
#include "backend/StackMachine.hpp"
#include <cctype>
#include <cerrno>
#include <exception>
#include <iterator>
#include <limits>
#include <map>
#include <memory>
#include <mutable/catalog/Catalog.hpp>
#include <mutable/storage/DataLayout.hpp>
#include <mutable/storage/Store.hpp>
#include <mutable/util/macro.hpp>
#include <string>
Go to the source code of this file.
|
#define | DIGITS(num) for (auto i = 0; i < num; ++i) if (is_dec(c)) push(); else goto invalid; |
|
#define | DIGITS(num) for (auto i = 0; i < num; ++i) if (is_dec(c)) push(); else goto invalid; |
|
◆ DIGITS [1/2]
#define DIGITS |
( |
|
num | ) |
for (auto i = 0; i < num; ++i) if (is_dec(c)) push(); else goto invalid; |
◆ DIGITS [2/2]
#define DIGITS |
( |
|
num | ) |
for (auto i = 0; i < num; ++i) if (is_dec(c)) push(); else goto invalid; |