K and V must be comparable, since you use them as map keys:
type BiMap[type V, K comparable] struct {
forward map[K]V
reverse map[V]K
}-- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/202f1ffa-ac89-42eb-b617-d82e14c537een%40googlegroups.com.
