Files
2023-10-04 21:04:26 +01:00

7 lines
86 B
Go

package maps
type MapEntry[K comparable, V interface{}] struct {
Key K
Value V
}