go/src/maps/maps_test.go

var m1

var m2

func TestEqual(t *testing.T) {}

// equal is simply ==.
func equal[T comparable](v1, v2 T) bool {}

// equalNaN is like == except that all NaNs are equal.
func equalNaN[T comparable](v1, v2 T) bool {}

// equalStr compares ints and strings.
func equalIntStr(v1 int, v2 string) bool {}

func TestEqualFunc(t *testing.T) {}

func TestClone(t *testing.T) {}

func TestCloneNil(t *testing.T) {}

func TestCopy(t *testing.T) {}

func TestDeleteFunc(t *testing.T) {}

var n

func BenchmarkMapClone(b *testing.B) {}

func TestCloneWithDelete(t *testing.T) {}

func TestCloneWithMapAssign(t *testing.T) {}

func TestCloneLarge(t *testing.T) {}