Diff returns a new Path with a terminal diff fragment appended.
(reference, value interface{})
| 100 | |
| 101 | // Diff returns a new Path with a terminal diff fragment appended. |
| 102 | func (p Path) Diff(reference, value interface{}) Path { return p.with(nil, reference, value) } |
| 103 | |
| 104 | func (p Path) Format(f fmt.State, r rune) { |
| 105 | if len(p) == 0 { |