Instant is
off
|
Search plugin
|
Manual
|
haskell.org
dropWhile
-bytestring +containers
Packages
bytestring
containers
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