| 76 | } |
| 77 | |
| 78 | type allocatorOption[K comparable, V any] struct { |
| 79 | allocator Allocator[K, V] |
| 80 | } |
| 81 | |
| 82 | func (op allocatorOption[K, V]) apply(m *Map[K, V]) { |
| 83 | m.allocator = op.allocator |
nothing calls this directly
no outgoing calls
no test coverage detected