Path is similar to Value.Path.
(path string)
| 118 | |
| 119 | // Path is similar to Value.Path. |
| 120 | func (a *Array) Path(path string) *Value { |
| 121 | opChain := a.chain.enter("Path(%q)", path) |
| 122 | defer opChain.leave() |
| 123 | |
| 124 | return jsonPath(opChain, a.value, path) |
| 125 | } |
| 126 | |
| 127 | // Schema is similar to Value.Schema. |
| 128 | func (a *Array) Schema(schema interface{}) *Array { |