Created
August 7, 2015 00:26
-
-
Save Cedev/c0cbd1ff7e70d0b7e53d 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
deleteLast :: (a -> Bool) -> [a] -> [a] | |
deleteLast delete = snd . go | |
where | |
go [] = (False, []) | |
go (x:xs) = (delete x || deleteLater, if not (delete x) || deleteLater then x:xs' else xs') | |
where | |
(deleteLater, xs') = go xs | |
filterLast p = deleteLast (not . p) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment