func StreamJSON(decoder *json.Decoder, search []SearchElement) (bool, error)
StreamJSON searches the JSON stream for arrays matching a search element. For each array that it finds, it streams them one element at a time.
func StreamJSONArray(decoder *json.Decoder, path string, cb func(*json.Decoder) error) (bool, error)
StreamJSONArray searches the JSON stream for an array matching 'path'. For each element of this array, it streams one element at a time.
SearchElement defines the JSON arrays for which to search
type SearchElement struct { Path string CB func(*json.Decoder) error }