R/operator.R

Defines functions get_rhs get_lhs get_operator.listbuilder get_operator

#' @export
get_operator <- function(lb) UseMethod("get_operator")

#' @export
get_operator.listbuilder <- function(lb) {
    lb$operator
}

get_lhs <- function(lb) {
    lb$lhs
}

get_rhs <- function(lb) {
    lb$rhs
}
tarakc02/listbuilder documentation built on Jan. 27, 2024, 7:48 p.m.