Instant is
off
|
Search plugin
|
Manual
|
haskell.org
dropWhile
-containers -text
Packages
containers
text
base
bytestring
dropWhile
:: (a -> Bool) -> [a] -> [a]
base
Prelude
,
base
Data.List
dropWhile
p xs returns the suffix remaining after
takeWhile
p xs: > dropWhile (< 3) [1,2,3,4,5,1,2,3] == [3,4,5,1,2,3] > dropWhile (< 9) [1,2,3] == [] > dropWhile (< 0) [1,2,3] == [1,2,3]
dropWhile
:: (Char -> Bool) -> ByteString -> ByteString
bytestring
Data.ByteString.Char8
,
bytestring
Data.ByteString.Lazy.Char8
dropWhile
p xs returns the suffix remaining after
takeWhile
p xs.
dropWhile
:: (Word8 -> Bool) -> ByteString -> ByteString
bytestring
Data.ByteString
,
bytestring
Data.ByteString.Lazy
dropWhile
p xs returns the suffix remaining after
takeWhile
p xs.
©
Neil Mitchell
2004-2012, version 4.2.11