R/every.R
, R/some.R
async_every.Rd
Do every or some elements of a list satisfy an asynchronous predicate?
async_every(.x, .p, ...)
async_some(.x, .p, ...)
A deferred value for the result.
Other async iterators:
async_detect()
,
async_filter()
,
async_map()
# Check if all numbers are odd
# Note the use of force() here. Otherwise x will be evaluated later,
# and by then its value might change.
is_odd <- async(function(x) {
force(x)
delay(1/1000)$then(function() as.logical(x %% 2))
})
synchronise(async_every(c(1,3,5,7,10,11), is_odd))
#> [1] FALSE
synchronise(async_every(c(1,3,5,7,11), is_odd))
#> [1] TRUE