| 92 | static auto FieldI(const std::string& f) -> const FieldInfo* { return &IndexI()->fields.at(f); } |
| 93 | |
| 94 | static auto N(double n) { return MakeValue<Numeric>(n); } |
| 95 | static auto T(const std::string& v) { return MakeValue<StringArray>(util::Split(v, ",")); } |
| 96 | static auto V(const std::vector<double>& vals) { return MakeValue<NumericArray>(vals); } |
| 97 |