Nothing
#' Check if an argument is an array
#'
#' @templateVar fn Array
#' @template x
#' @template mode
#' @param any.missing [\code{logical(1)}]\cr
#' Are missing values allowed? Default is \code{TRUE}.
#' @param d [\code{integer(1)}]\cr
#' Exact number of dimensions of array \code{x}.
#' Default is \code{NULL} (no check).
#' @param min.d [\code{integer(1)}]\cr
#' Minimum number of dimensions of array \code{x}.
#' Default is \code{NULL} (no check).
#' @param max.d [\code{integer(1)}]\cr
#' Maximum number of dimensions of array \code{x}.
#' Default is \code{NULL} (no check).
#' @template null.ok
#' @template checker
#' @family basetypes
#' @family compound
#' @useDynLib checkmate c_check_array
#' @export
#' @examples
#' checkArray(array(1:27, dim = c(3, 3, 3)), d = 3)
checkArray = function(x, mode = NULL, any.missing = TRUE, d = NULL, min.d = NULL, max.d = NULL, null.ok = FALSE) {
.Call(c_check_array, x, mode, any.missing, d, min.d, max.d, null.ok)
}
#' @export
#' @rdname checkArray
check_array = checkArray
#' @export
#' @include makeAssertion.R
#' @template assert
#' @rdname checkArray
assertArray = makeAssertionFunction(checkArray, c.fun = "c_check_array", use.namespace = FALSE)
#' @export
#' @rdname checkArray
assert_array = assertArray
#' @export
#' @include makeTest.R
#' @rdname checkArray
testArray = makeTestFunction(checkArray, c.fun = "c_check_array")
#' @export
#' @rdname checkArray
test_array = testArray
#' @export
#' @include makeExpectation.R
#' @template expect
#' @rdname checkArray
expect_array = makeExpectationFunction(checkArray, c.fun = "c_check_array", use.namespace = FALSE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.