#pragma once #include #include #include #include namespace mbgl { namespace style { namespace expression { class CollatorExpression : public Expression { public: CollatorExpression(std::unique_ptr caseSensitive, std::unique_ptr diacriticSensitive, optional> locale); EvaluationResult evaluate(const EvaluationContext&) const override; static ParseResult parse(const mbgl::style::conversion::Convertible&, ParsingContext&); void eachChild(const std::function&) const override; bool operator==(const Expression& e) const override; std::vector> possibleOutputs() const override { // Technically the set of possible outputs is the combinatoric set of Collators produced // by all possibleOutputs of locale/caseSensitive/diacriticSensitive // But for the primary use of Collators in comparison operators, we ignore the Collator's // possibleOutputs anyway, so we can get away with leaving this undefined for now. return { nullopt }; } mbgl::Value serialize() const override; std::string getOperator() const override { return "collator"; } private: std::unique_ptr caseSensitive; std::unique_ptr diacriticSensitive; optional> locale; }; } // namespace expression } // namespace style } // namespace mbgl