| 17 | } |
| 18 | |
| 19 | type poolAt struct { |
| 20 | poolAt sync.Pool |
| 21 | } |
| 22 | |
| 23 | // NewPoolAt returns a PoolAt(), 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