list.takeWhile: Keep taking elements while a condition holds

Description Usage Arguments See Also Examples

View source: R/list.take.R

Description

Keep taking elements out from a list or vector while a condition holds for the element. If the condition is violated for an element, the element will not be taken and all taken elements will be returned.

Usage

1
list.takeWhile(.data, cond)

Arguments

.data

list or vector

cond

A logical lambda expression

See Also

list.take, list.skip, list.skipWhile

Examples

1
2
3
4
5
x <- list(p1 = list(type='A',score=list(c1=10,c2=8)),
       p2 = list(type='B',score=list(c1=9,c2=9)),
       p3 = list(type='B',score=list(c1=9,c2=7)))
list.takeWhile(x, type=='B')
list.takeWhile(x, min(score$c1,score$c2) >= 8)

Example output

named list()
$p1
$p1$type
[1] "A"

$p1$score
$p1$score$c1
[1] 10

$p1$score$c2
[1] 8



$p2
$p2$type
[1] "B"

$p2$score
$p2$score$c1
[1] 9

$p2$score$c2
[1] 9

rlist documentation built on Sept. 5, 2021, 5:30 p.m.