Skip to contents

Is the element an aggregation of smaller data

Usage

is_aggregated(x)

Arguments

x

An object.

Value

A logical vector indicating which elements are aggregated.

See also

Examples

v <- agg_vec(c(NA, "A", "B"), c(TRUE, FALSE, FALSE))
is_aggregated(v)
#> [1]  TRUE FALSE FALSE