Nothing
noMissingValue <- function(x) {
!anyNA(x)
}
#' @importFrom R6 is.R6
#' @noRd
isCGALpolygon <- function(x) {
is.R6(x) && inherits(x, "cgalPolygon")
}
isCGALpolygonWithHoles <- function(x) {
is.R6(x) && inherits(x, "cgalPolygonWithHoles")
}
isBoolean <- function(x) {
is.logical(x) && length(x) == 1L && !is.na(x)
}
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.