You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Evaluate returns whether reference and actual value are considered equal under simple Unicode case-folding, which is a more general form of case-insensitivity.
// For example "AB" will match "ab".
// It converts numerical values implicitly before comparison.
func (e *equalFold) Evaluate(v any) bool {
v = convertValue(v)
val := reflect.ValueOf(v)
ref := reflect.ValueOf(e.ref)
if (val.Kind() == reflect.String) && (ref.Kind() == reflect.String) {