Documentation ¶
Overview ¶
Package pool provides internal pool utilities.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Pool ¶
type Pool[T any] struct { // contains filtered or unexported fields }
A Pool is a generic wrapper around sync.Pool to provide strongly-typed object pooling.
Note that SA6002 (ref: https://staticcheck.io/docs/checks/#SA6002) will not be detected, so all internal pool use must take care to only store pointer types.
func New ¶
New returns a new Pool for T, and will use fn to construct new Ts when the pool is empty.
Click to show internal directories.
Click to hide internal directories.