Unquote indicates that the result value should be unquoted. ValuePath(b, "column", Path("a", "b", "[1]", "c"), Unquote(true))
(unquote bool)
| 434 | // |
| 435 | // ValuePath(b, "column", Path("a", "b", "[1]", "c"), Unquote(true)) |
| 436 | func Unquote(unquote bool) Option { |
| 437 | return func(p *PathOptions) { |
| 438 | p.Unquote = unquote |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | // Cast indicates that the result value should be cast to the given type. |
| 443 | // |
no outgoing calls
searching dependent graphs…