R/00-core-ref-split-digit.R

Defines functions split_digit_impl split_digit

#SO

# split a digit at the first point where predicate flips from FALSE to TRUE
# Runtime: O(k), where k = digit length (<= 4 in normal tree structure).
if(FALSE) split_digit <- function(p, i, digit, monoids, monoid_name) NULL
split_digit(p, i, digit, monoids, monoid_name) %::% Function : . : list : list : character : list
split_digit(p, i, digit, monoids, monoid_name) %as% {
  ms <- monoids
  mr <- ms[[monoid_name]]
  if(is.null(mr)) {
    stop(paste0("Unknown measure monoid '", monoid_name, "'."))
  }
  split_digit_impl(p, i, digit, ms, mr, monoid_name)
}

# Runtime: O(k), where k = digit length (<= 4 in normal tree structure).
split_digit_impl <- function(p, i, digit, ms, mr, monoid_name) {
  if(length(digit) == 0) {
    stop("split_digit called with empty digit")
  }

  acc <- i
  for(idx in seq_along(digit)) {
    el <- digit[[idx]]
    # el can be a raw element or a structural node.
    m_el <- if(is_structural_node(el)) {
      cached <- attr(el, "measures", exact = TRUE)
      if(!is.null(cached) && !is.null(cached[[monoid_name]])) {
        cached[[monoid_name]]
      } else {
        # support unannotated Node2/Node3 values in tests and ad-hoc usage.
        measure_child_named_impl(el, ms, monoid_name, mr)
      }
    } else {
      mr$measure(el)
    }
    acc <- mr$f(acc, m_el)
    if(p(acc)) {
      left <- if(idx == 1) list() else digit[1:(idx - 1)]
      right <- if(idx == length(digit)) list() else digit[(idx + 1):length(digit)]
      return(list(left = left, value = el, right = right))
    }
  }

  stop("split_digit: predicate never became true; precondition violated")
}

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.