1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-12 16:52:29 +08:00

refactor: change function name EqualWithFunc to EqualWith

This commit is contained in:
dudaodong
2022-06-15 15:25:44 +08:00
parent bf49db60d9
commit d21c101caf
2 changed files with 5 additions and 5 deletions

View File

@@ -162,8 +162,8 @@ func Equal[T comparable](slice1, slice2 []T) bool {
return true
}
// EqualWithFunc checks if two slices are equal with comparator func
func EqualWithFunc[T, U any](slice1 []T, slice2 []U, comparator func(T, U) bool) bool {
// EqualWith checks if two slices are equal with comparator func
func EqualWith[T, U any](slice1 []T, slice2 []U, comparator func(T, U) bool) bool {
if len(slice1) != len(slice2) {
return false
}