| 90 | |
| 91 | static auto IndexI() -> const IndexInfo* { return index_map.Find("ia", "search_ns")->second.get(); } |
| 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, ",")); } |