R/print_flux_state.R

Defines functions print.flux_state

#' @export
#' @method print flux_state
#' @noRd
print.flux_state <- function(x, ...) {
  # Lightweight print method for flux_state objects (internal state snapshots).
  # Keep it stable and readable for debugging and test output.
  cat("<flux_state>\n")
  base::print(unclass(x), ...)
  invisible(x)
}

Try the fluxCore package in your browser

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

fluxCore documentation built on Sept. 22, 2026, 5:07 p.m.