Nothing
#SO
#' Create an Empty Structural Tree
#'
#' @param monoids Optional named list of `measure_monoid` objects.
#' @return An empty finger tree with structural `monoids` and `measures` attrs.
#' @keywords internal
# Runtime: O(1).
empty_tree <- function(monoids = NULL) {
ms <- if(is.null(monoids)) {
list(.size = size_measure_monoid())
} else {
ensure_size_monoids(monoids)
}
measured_empty(ms)
}
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.