Änderung der Struktur, Beibehaltung der Elemente
Vorbild:
take :: Int -> [a] -> [a] drop :: Int -> [a] -> [a] filter :: (a -> Bool) -> [a] -> [a]
Take, Drop, Where
Übung: takeWhile, dropWhile, ...
takeWhile, dropWhile,