TransformFunc is a function that transforms K to V.
func(K) V
| 14 | |
| 15 | // TransformFunc is a function that transforms K to V. |
| 16 | type TransformFunc[K, V any] func(K) V |
| 17 | |
| 18 | // Normalizer caches transformed results so we do not repeatedly transform the same inputs. |
| 19 | type Normalizer[K comparable, V any] struct { |
nothing calls this directly
no outgoing calls
no test coverage detected