Skip to content

Commit

Permalink
Drop b type variable from List.find
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone committed Nov 30, 2024
1 parent ec773da commit befd15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hell.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit befd15d

Please sign in to comment.