mirror of
https://github.com/IBM/fp-go.git
synced 2025-11-27 22:28:29 +02:00
11 lines
187 B
Go
11 lines
187 B
Go
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)
|
|
}
|