fptools v0.1.0 (2018-09-14T15:55:21Z)
Dub
Repo
dropWhile
fptools
native
dropWhile - Usage : dropWhile!int(x => x < 3, seq(1,5)) == [3,4,5]
T
[]
dropWhile
(
T
)
(
bool
delegate
(
T
)
p
,
T
[]
list
)
Meta
Source
See Implementation
fptools
native
functions
all
any
drop
dropWhile
filter
map
reduce
take
takeWhile
zipWith
dropWhile - Usage : dropWhile!int(x => x < 3, seq(1,5)) == [3,4,5]