| 143 | var sorterPool = sync.Pool{New: func() any { return new(sorter) }} |
| 144 | |
| 145 | type sorter struct { |
| 146 | v []string // owned by sorter |
| 147 | } |
| 148 | |
| 149 | func (s *sorter) Len() int { return len(s.v) } |
| 150 |
nothing calls this directly
no outgoing calls
no test coverage detected