Created
January 9, 2020 22:37
-
-
Save dminuoso/d55e18de07bec1843d761cdf71b193e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
manyN :: Int -> f a -> f [a] | |
manyN n v = many_v n | |
where | |
many_v 0 = pure [] | |
many_v n = some_v (n - 1) <|> pure [] | |
some_v 0 = pure [] | |
some_v n = liftA2 (:) v (many_v (n - 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment