| 17 | } |
| 18 | |
| 19 | type pool struct { |
| 20 | pool sync.Pool |
| 21 | } |
| 22 | |
| 23 | // NewPool returns a Pool(), it's backed by a sync.Pool so its safe for concurrent use. |
| 24 | // Get() and Put() errors will always be nil. |
nothing calls this directly
no outgoing calls
no test coverage detected