mirror of
https://github.com/IBM/fp-go.git
synced 2025-08-10 22:31:32 +02:00
fix: auto generate more sequence operations
Signed-off-by: Dr. Carsten Leue <carsten.leue@de.ibm.com>
This commit is contained in:
@@ -17,7 +17,7 @@ package predicate
|
||||
|
||||
func Not[A any](predicate func(A) bool) func(A) bool {
|
||||
return func(a A) bool {
|
||||
return !predicate((a))
|
||||
return !predicate(a)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user