- Note
- This Source File belongs to 7GUIs Cells Example. Please follow the link for example explanation.
#pragma once
#include <AUI/Common/AString.h>
class Spreadsheet;
namespace formula {
struct Range {
glm::uvec2 from{}, to{};
bool operator==(const Range&) const = default;
bool operator!=(const Range&) const = default;
};
using Value = std::variant<std::nullopt_t, double, AString, Range>;
using Precompiled = std::function<formula::Value(const Spreadsheet& spreadsheet)>;
formula::Value evaluate(const Spreadsheet& spreadsheet, const AString& expression);
Precompiled precompile(const AString& expression);
}