type Result struct {
// Type is the json type
Type Type
// Raw is the raw json
Raw string
// Str is the json string
Str string
// Num is the json number
Num float64
// Index of raw value in original json, zero means index unknown
Index int
// Indexes of all the elements that match on a path containing the '#'
// query character.
Indexes []int
}
Is my understanding correct? raw is a native string, and str is a string without escape characters.
Is my understanding correct? raw is a native string, and str is a string without escape characters.