File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 99# ' * The predicates for vectors include the `n` argument for
1010# ' pattern-matching on the vector length.
1111# '
12- # ' * Unlike `is.atomic()`, `is_atomic()` does not return `TRUE` for
13- # ' `NULL`.
12+ # ' * Unlike `is.atomic()` in R < 4.4.0 , `is_atomic()` does not return `TRUE` for
13+ # ' `NULL`. Starting in R 4.4.0 `is.atomic(NULL)` returns FALSE.
1414# '
1515# ' * Unlike `is.vector()`, `is_vector()` tests if an object is an
1616# ' atomic vector or a list. `is.vector` checks for the presence of
@@ -197,8 +197,9 @@ is_bool <- function(x) {
197197# ' * The predicates for vectors include the `n` argument for
198198# ' pattern-matching on the vector length.
199199# '
200- # ' * Like [is_atomic()] and unlike base R `is.atomic()`,
201- # ' `is_bare_atomic()` does not return `TRUE` for `NULL`.
200+ # ' * Like [is_atomic()] and unlike base R `is.atomic()` for R < 4.4.0,
201+ # ' `is_bare_atomic()` does not return `TRUE` for `NULL`. Starting in
202+ # ' R 4.4.0, `is.atomic(NULL)` returns FALSE.
202203# '
203204# ' * Unlike base R `is.numeric()`, `is_bare_double()` only returns
204205# ' `TRUE` for floating point numbers.
You can’t perform that action at this time.
0 commit comments