async (version 0.0.0.9004)

async_every: Do every or some elements of a list satisfy an asynchronous predicate?

Description

Do every or some elements of a list satisfy an asynchronous predicate?

Usage

async_every(.x, .p, ...)

async_some(.x, .p, ...)

Arguments

.x

A list or atomic vector.

.p

An asynchronous predicate function.

...

Additional arguments to the predicate function.

Value

A deferred value for the result.

See Also

Other async iterators: async_detect, async_filter, async_map

Examples

Run this code
# NOT RUN {
# 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))
synchronise(async_every(c(1,3,5,7,11), is_odd))
# }

Run the code above in your browser using DataCamp Workspace