Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check helper for "list of" things #1663

Open
hadley opened this issue Oct 31, 2023 · 0 comments
Open

Check helper for "list of" things #1663

hadley opened this issue Oct 31, 2023 · 0 comments

Comments

@hadley
Copy link
Member

hadley commented Oct 31, 2023

Something that could replace code like this:

if (!is_bare_list(dots)) {
  stop_input_type(dots, "a list")
}

if (!is_named(dots)) {
  cli::cli_abort(
    "All components of {.arg ...} must be named.",
    call = error_call
  )
}

type_ok <- map_lgl(dots, function(x) is_atomic(x) || is.null(x))
if (any(!type_ok)) {
  cli::cli_abort(
    "All elements of {.code ...} must be either an atomic vector or NULL."
  )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant