R/is_pop_symbol.R

Defines functions is_pop_symbol

Documented in is_pop_symbol

#' Check if character is a pop symbol
#'
#' @param x an R object to be tested.
#'
#' @return A logical vector the same length as \code{x},
#'   with \code{TRUE} for elements equal to the pop symbol \code{"]"},
#'   and \code{FALSE} otherwise.
#'
#' @export
is_pop_symbol <- function(x){ x == ']'}

Try the fractalforest package in your browser

Any scripts or data that you put into this service are public.

fractalforest documentation built on July 3, 2025, 1:09 a.m.