gitlab.com/evatix-go/core@v1.3.55/isany/DeepEqual.go (about) 1 package isany 2 3 import ( 4 "gitlab.com/evatix-go/core/internal/reflectinternal" 5 ) 6 7 func DeepEqual( 8 left, right interface{}, 9 ) (isEqual bool) { 10 return reflectinternal. 11 IsAnyEqual(left, right) 12 }