Nothing
#' Create multiset
#'
#' Create a multiset. Multisets are containers of sorted, non-unique elements.
#'
#' @param x An integer, numeric, character, or logical vector.
#'
#' @details Multisets are associative containers. They do not provide random access through an index. I.e. \code{s[2]} does not return the second element.
#'
#' C++ multiset methods implemented in this package are \link{clear}, \link{contains}, \link{count}, \link{emplace}, \link{empty}, \link{erase},
#' \link{insert}, \link{max_size}, \link{merge}, and \link{size}. The package also adds the \link{==} operator and various helper functions (\link{print},
#' \link{to_r}, \link{type}).
#'
#' All object-creating methods in this package begin with \code{cpp_} to avoid clashes with functions from other packages, such as \code{utils::stack} and
#' \code{base::vector}.
#'
#' @returns Returns a CppMultiset object referencing a multiset in C++.
#'
#' @seealso \link{cpp_set}, \link{cpp_unordered_set}, \link{cpp_unordered_multiset}.
#'
#' @examples
#' s <- cpp_multiset(c(6:9, 6L))
#' s
#' # 6 6 7 8 9
#'
#' insert(s, 4:7)
#' s
#' # 4 5 6 6 6 7 7 8 9
#'
#' print(s, from = 6)
#' # 6 6 6 7 7 8 9
#'
#' s <- cpp_multiset(c("world", "hello", "world", "there"))
#' s
#' # "hello" "there" "world" "world"
#'
#' erase(s, "world")
#' s
#' # "hello" "there"
#'
#' @include classes.R
#' @export
cpp_multiset <- function(x) {
check_insert_values(x)
if(is.integer(x)) {
s <- methods::new("CppMultiset", pointer = multiset_i(x), type = "integer")
} else if(is.numeric(x)) {
s <- methods::new("CppMultiset", pointer = multiset_d(x), type = "double")
} else if(is.character(x)) {
s <- methods::new("CppMultiset", pointer = multiset_s(x), type = "string")
} else if(is.logical(x)) {
s <- methods::new("CppMultiset", pointer = multiset_b(x), type = "boolean")
} else {
stop("x must an integer, numeric, character, or logical vector")
}
return(s)
}
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.