# Functions
ParseExpression deserializes a string comparison expression (e.g.
# Variables
TypeNames maps a comparison.Type to its string form.
# Structs
Eq implements an "equal" comparator.
Expression is a struct that represents the deserialization of a string expression.
Ge implements a "greater or equal" comparator.
Gt implements a "greater than" comparator.
Le implements a "less or equal" comparator.
Lt implements a "less than" comparator.
Result wraps the result of a comparison, including the full expression that was evaluated.
# Interfaces
Comparator is an interface that all comparators must implement.