1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-11-27 22:28:29 +02:00
Files
fp-go/record/eq.go

11 lines
187 B
Go
Raw Normal View History

package record
import (
E "github.com/ibm/fp-go/eq"
G "github.com/ibm/fp-go/record/generic"
)
func Eq[K comparable, V any](e E.Eq[V]) E.Eq[map[K]V] {
return G.Eq[map[K]V, K, V](e)
}