R/60-interval_index-apply.R

Defines functions fapply.interval_index .ivx_apply_impl

#SO

# Applies a payload transform across interval entries while preserving interval
# coordinates and names.
# **Inputs:**
#
# - `x`: interval_index.
# - `f`: function(value, start, end, name, ...) -> new value.
# - `...`: forwarded to `f`.
# - `preserve_custom_monoids`: scalar logical.
# **Outputs:** interval_index with transformed payload items.
# **Used by:** fapply.interval_index().
.ivx_apply_impl <- function(x, f, ..., preserve_custom_monoids = TRUE) {
  .ivx_assert_index(x)
  if(!is.function(f)) {
    stop("`FUN` must be a function.")
  }
  if(!is.logical(preserve_custom_monoids) || length(preserve_custom_monoids) != 1L || is.na(preserve_custom_monoids)) {
    stop("`preserve_custom_monoids` must be TRUE or FALSE.")
  }

  entries <- .ivx_entries(x)
  n <- length(entries)
  if(n == 0L) {
    return(x)
  }

  out_entries <- vector("list", n)

  dot_args <- list(...)
  accepts_name <- .ft_fun_accepts_n_positional(f, 4L)
  has_dots <- length(dot_args) > 0L

  for(i in seq_len(n)) {
    e <- entries[[i]]
    # inline .ft_get_name / .ft_normalize_name to avoid lambda.r dispatch per element
    nm <- attr(e, "ft_name", exact = TRUE)
    if(!is.null(nm) && (!is.character(nm) || length(nm) != 1L || is.na(nm) || !nzchar(nm))) {
      nm <- NULL
    }
    cur_name <- if(is.null(nm)) "" else nm
    item2 <- if(accepts_name && !has_dots) {
      f(e$value, e$start, e$end, cur_name)
    } else if(!accepts_name && !has_dots) {
      f(e$value, e$start, e$end)
    } else if(accepts_name) {
      do.call(f, c(list(e$value, e$start, e$end, cur_name), dot_args))
    } else {
      do.call(f, c(list(e$value, e$start, e$end), dot_args))
    }
    entry2 <- .ivx_make_entry(item2, e$start, e$end)
    # inline .ft_set_name to avoid lambda.r dispatch per element
    if(!is.null(nm)) attr(entry2, "ft_name") <- nm
    out_entries[[i]] <- entry2
  }

  ms <- if(isTRUE(preserve_custom_monoids)) {
    resolve_tree_monoids(x, required = TRUE)
  } else {
    .ivx_merge_monoids(NULL, endpoint_type = .ivx_endpoint_type_state(x))
  }
  out_tree <- .ivx_tree_from_ordered_entries(out_entries, ms)
  .ivx_wrap_like(x, out_tree)
}

# Runtime: O(n) from traversal + ordered bulk rebuild.
# S3 fapply method for interval_index.
# **Inputs:** `X` interval_index; `FUN` transform function; `...`; scalar logical
# `preserve_custom_monoids`.
# **Outputs:** interval_index with transformed payload items.
# **Used by:** public `fapply()` generic dispatch.
#' @method fapply interval_index
#' @export
#' @noRd
fapply.interval_index <- function(X, FUN, ..., preserve_custom_monoids = TRUE) {
  if(!is.function(FUN)) {
    stop("`FUN` must be a function.")
  }
  .ivx_apply_impl(X, FUN, ..., preserve_custom_monoids = preserve_custom_monoids)
}

Try the Immutables package in your browser

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

Immutables documentation built on April 29, 2026, 1:06 a.m.