Check whether this Value is equal to another Value.
@override double equality(Value? rhs) { if (rhs is! ValFunction) return 0; return identical(this, rhs) || identical(function, rhs.function) ? 1 : 0; }