Instant is
off
|
Search plugin
|
Manual
|
haskell.org
dropWhile
-base -text
Packages
base
text
bytestring
containers
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.
dropWhile
L
:: (a -> Bool) -> Seq a -> Seq a
containers
Data.Sequence
O(i)
p xs</tt> returns the suffix remaining after
takeWhileL
p xs.
dropWhile
R
:: (a -> Bool) -> Seq a -> Seq a
containers
Data.Sequence
O(i)
p xs</tt> returns the prefix remaining after
takeWhileR
p xs.
dropWhileR
p xs is equivalent to
reverse
(
dropWhileL
p (
reverse
xs)).
©
Neil Mitchell
2004-2012, version 4.2.11