Missing returns a new Path with a missing value fragment appended.
(reference, value interface{})
| 87 | |
| 88 | // Missing returns a new Path with a missing value fragment appended. |
| 89 | func (p Path) Missing(reference, value interface{}) Path { return p.with(Key, reference, value) } |
| 90 | |
| 91 | // Index returns a new Path with an array/slice index fragment appended. |
| 92 | func (p Path) Index(i int, reference, value interface{}) Path { |
no test coverage detected