We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
old:
// Gt check value greater dst value. only check for: int(X), uint(X), float(X) func Gt(val interface{}, dstVal int64) bool {
v2 new:
// Gt check value greater dst value. only check for: int(X), uint(X), float(X) func Gt(val, dstVal interface{}) bool { return gt(reflect.ValueOf(val), reflect.ValueOf(dstVal)) } // internal implements func gt(val reflect.Value, dstVal reflect.Value) bool
The text was updated successfully, but these errors were encountered:
inhere
No branches or pull requests
old:
v2 new:
The text was updated successfully, but these errors were encountered: