()
| 121 | } |
| 122 | |
| 123 | func (p *Partial) MustSlice() []*Partial { |
| 124 | a, err := p.Slice() |
| 125 | checkError(err) |
| 126 | return a |
| 127 | } |
| 128 | |
| 129 | func (p *Partial) MustSliceOfLength(length int) []*Partial { |
| 130 | a, err := p.SliceOfLength(length) |
nothing calls this directly
no test coverage detected