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
Result
Result will return static type instead of interface.
const json = `{"name":{"first":"Tom","last":"Hanks"},"age":61}` result, err := gojsonq.New().JSONString(json).FindR("name.first") if err != nil { log.Fatal(err) } name, _ := result.String() fmt.Println(name)
Result may contains method like: String/Int/Int32/Int64/Uint/Uint32/Uint64/Float32/Float64/[]String/[]Int/[]Uint/[]Float32 etc method
String/Int/Int32/Int64/Uint/Uint32/Uint64/Float32/Float64/[]String/[]Int/[]Uint/[]Float32
Result method name may FindR/GetR etc
FindR/GetR etc
The text was updated successfully, but these errors were encountered:
ab3beb6
thedevsaddam
No branches or pull requests
Result will return static type instead of interface.
Result may contains method like:
String/Int/Int32/Int64/Uint/Uint32/Uint64/Float32/Float64/[]String/[]Int/[]Uint/[]Float32
etc methodResult method name may
FindR/GetR etc
The text was updated successfully, but these errors were encountered: