PorygonLang/src/Evaluator/EvalValues/NumericalTableEvalValue.cpp

7 lines
235 B
C++
Raw Normal View History

#include "NumericalTableEvalValue.hpp"
#include "../Iterator/NumericalKeyIterator.hpp"
Porygon::Evaluation::Iterator *Porygon::Evaluation::NumericalTableEvalValue::GetKeyIterator() const {
return new NumericalKeyIterator(this);
}