()
| 137 | } |
| 138 | |
| 139 | func (p *Partial) MustMap() map[string]*Partial { |
| 140 | m, err := p.Map() |
| 141 | checkError(err) |
| 142 | return m |
| 143 | } |
| 144 | |
| 145 | func (p *Partial) MustString() string { |
| 146 | s, err := p.String() |
nothing calls this directly
no test coverage detected