Path is similar to Value.Path.
(path string)
| 89 | |
| 90 | // Path is similar to Value.Path. |
| 91 | func (n *Number) Path(path string) *Value { |
| 92 | opChain := n.chain.enter("Path(%q)", path) |
| 93 | defer opChain.leave() |
| 94 | |
| 95 | return jsonPath(opChain, n.value, path) |
| 96 | } |
| 97 | |
| 98 | // Schema is similar to Value.Schema. |
| 99 | func (n *Number) Schema(schema interface{}) *Number { |