4 lines
93 B
Haskell
4 lines
93 B
Haskell
module Annotator.Util where
|
|
|
|
anyp :: [a -> Bool] -> a -> Bool
|
|
anyp preds x = any ($ x) preds
|