// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details. #pragma once #include #include #include namespace hilti::operator_ { HILTI_NODE_OPERATOR(string, Equal) HILTI_NODE_OPERATOR(string, Unequal) HILTI_NODE_OPERATOR(string, Size) HILTI_NODE_OPERATOR(string, Sum) HILTI_NODE_OPERATOR(string, SumAssign) HILTI_NODE_OPERATOR(string, Modulo) HILTI_NODE_OPERATOR(string, Encode) HILTI_NODE_OPERATOR(string, Split) HILTI_NODE_OPERATOR(string, Split1) HILTI_NODE_OPERATOR(string, StartsWith) HILTI_NODE_OPERATOR(string, EndsWith) HILTI_NODE_OPERATOR(string, LowerCase) HILTI_NODE_OPERATOR(string, UpperCase) } // namespace hilti::operator_