(defaultValue output.Format, p *output.Format)
| 141 | type outputValue output.Format |
| 142 | |
| 143 | func newOutputValue(defaultValue output.Format, p *output.Format) *outputValue { |
| 144 | *p = defaultValue |
| 145 | return (*outputValue)(p) |
| 146 | } |
| 147 | |
| 148 | func (o *outputValue) String() string { |
| 149 | // It is much cleaner looking (and technically less allocations) to just |
no outgoing calls
no test coverage detected
searching dependent graphs…