R/utils.R

#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
#' @param lhs A value or the magrittr placeholder.
#' @param rhs A function call using the magrittr semantics.
#' @return The result of calling `rhs(lhs)`.
NULL

utils::globalVariables(
  c(
    "cv_lambda_A",
    "cv_lambda_L",
    "k",
    "val",
    "z"
  )
)
RoheLab/gdim documentation built on Sept. 13, 2023, 1:55 a.m.