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