Nothing
#' Check superset relation on two vectors.
#'
#' @param x [\code{vector}]\cr
#' Source vector.
#' @param y [\code{vector}]\cr
#' Vector of the same mode as \code{x}.
#' @param strict [\code{logical(1)}]\cr
#' Checks for strict/proper superset relation.
#' @return [\code{logical(1)}]
#' \code{TRUE} if each element of \code{y} is also contained in \code{x}, i. e.,
#' if \code{y} is a subset of \code{x} and \code{FALSE} otherwise.
#' @export
isSuperset = function(x, y, strict = FALSE) {
isSubset(y, x, strict)
}
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.