mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
@@ -185,3 +185,12 @@ func ArrayFilter[T any](array []T, fn func(T) bool) []T {
|
||||
}
|
||||
return filtered
|
||||
}
|
||||
|
||||
func AnyMatch[T any](array []T, fn func(T) bool) bool {
|
||||
for _, val := range array {
|
||||
if fn(val) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user