From befd15d43eba011ac00d308da41dcd776f015105 Mon Sep 17 00:00:00 2001 From: Chris Done Date: Sat, 30 Nov 2024 17:51:11 +0000 Subject: [PATCH] Drop `b` type variable from List.find --- src/Hell.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Hell.hs b/src/Hell.hs index 2cb88af..4a5e3ce 100644 --- a/src/Hell.hs +++ b/src/Hell.hs @@ -1311,7 +1311,7 @@ polyLits = Map.fromList "List.mapAccumR" List.mapAccumL :: forall s a b. (s -> a -> (s, b)) -> s -> [a] -> (s, [b]) "List.zipWith" List.zipWith :: forall a b c. (a -> b -> c) -> [a] -> [b] -> [c] "List.lookup" List.lookup :: forall a b. Eq a => a -> [(a,b)] -> Maybe b - "List.find" List.find :: forall a b. (a -> Bool) -> [a] -> Maybe a + "List.find" List.find :: forall a. (a -> Bool) -> [a] -> Maybe a "List.sort" List.sort :: forall a. Ord a => [a] -> [a] "List.group" List.group :: forall a. Eq a => [a] -> [[a]] "List.isPrefixOf" List.isPrefixOf :: forall a. Eq a => [a] -> [a] -> Bool