Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

export(check_container_class)
export(check_envvar)
export(check_nzchar)
export(check_scalar_type)
export(check_that)
export(check_vec)
export(generate_resource)
export(get_auth_token)
export(get_container)
Expand Down
6 changes: 3 additions & 3 deletions R/azkit_helpers.R → R/helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ct_error_msg <- \(text) paste0("{.fn check_that}: ", text)
#' predicate. "some" is unlikely to be useful often, but it is available.
#' @inheritParams check_that
#' @seealso [check_scalar_type()]
#' @keywords internal
#' @export
check_vec <- function(
x,
predicate,
Expand Down Expand Up @@ -78,7 +78,7 @@ cv_error_msg <- \(text) paste0("{.fn check_vec}: ", text)
#' @seealso [check_that]
#' @inheritParams check_that
#' @param type A string defining the R object type that `x` is checked to be
#' @keywords internal
#' @export
check_scalar_type <- function(
x,
type,
Expand Down Expand Up @@ -122,7 +122,7 @@ cst_error_msg <- \(text) paste0("{.fn check_scalar_type}: ", text)
#' semantic markup. Variable values will be searched for in the environment of
#' the caller function (not in the environment of `check_nzchar()`). This
#' makes it easier to include informative values in the message.
#' @keywords internal
#' @export
check_nzchar <- function(x, message, pf = parent.frame()) {
if (is.null(x)) {
NULL
Expand Down
2 changes: 1 addition & 1 deletion man/check_container_class.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/check_nzchar.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/check_scalar_type.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/check_that.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions man/check_vec.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/gregg.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading