mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
21 lines
578 B
Go
21 lines
578 B
Go
package fn
|
|
|
|
// Pred[A] is a type alias for a predicate operating over type A.
|
|
type Pred[A any] func(A) bool
|
|
|
|
// PredAnd is a lifted version of the && operation that operates over functions
|
|
// producing a boolean value from some type A.
|
|
func PredAnd[A any](p0 Pred[A], p1 Pred[A]) Pred[A] {
|
|
return func(a A) bool {
|
|
return p0(a) && p1(a)
|
|
}
|
|
}
|
|
|
|
// PredOr is a lifted version of the || operation that operates over functions
|
|
// producing a boolean value from some type A.
|
|
func PredOr[A any](p0 Pred[A], p1 Pred[A]) Pred[A] {
|
|
return func(a A) bool {
|
|
return p0(a) || p1(a)
|
|
}
|
|
}
|