nolint:forcetypeassert
(f func(key K, value V) bool)
| 73 | |
| 74 | //nolint:forcetypeassert |
| 75 | func (m *Map[K, V]) Range(f func(key K, value V) bool) { |
| 76 | m.m.Range(func(key, value interface{}) bool { |
| 77 | return f(key.(K), value.(V)) |
| 78 | }) |
| 79 | } |
no outgoing calls
no test coverage detected