Nothing
#' @keywords internal
#' @noRd
.op_rel <- function() {
return(c("==", "!=", "<", ">", "<=", ">="))
}
#' @keywords internal
#' @noRd
.op_dec_math <- function() {
return(c("+", "-", "*", "/", "^", "pmin", "pmax"))
}
#' @keywords internal
#' @noRd
.op_dec_rel <- function() {
return(c("==", "!=", "<", ">", "<=", ">=", "d==", "d!=", "d<", "d>", "d<=", "d>="))
}
#' @keywords internal
#' @noRd
.op_int_math <- function() {
return(c("+", "-", "*", "gcd", "%%", "%/%", "^", "pmin", "pmax"))
}
#' @keywords internal
#' @noRd
.op_int_rel <- function() {
return(c("==", "!=", "<", ">", "<=", ">="))
}
#' @keywords internal
#' @noRd
.op_b <- function() {
return(c("&", "|", "xor", "nand", "==", "!=", "<", ">", "<=", ">="))
}
#' @keywords internal
#' @noRd
.op_str_rel <- function() {
return(c("==", "!="))
}
#' @keywords internal
#' @noRd
.op_str_conc <- function() {
return(c("+"))
}
#' @keywords internal
#' @noRd
.op_str_dist <- function() {
return(c("levenshtein"))
}
#' @keywords internal
#' @noRd
.op_cplx_rel <- function() {
return(c("==", "!="))
}
#' @keywords internal
#' @noRd
.op_cplx_math <- function() {
return(c("+", "-", "*", "/"))
}
#' @keywords internal
#' @noRd
.op_bit <- function() {
return(c("&", "|", "xor", "nand", "==", "!=", "<", ">", "<=", ">=", "<<", ">>"))
}
#' @keywords internal
#' @noRd
.op_raw_byte <- function() {
return(c("==", "!=", "<", ">", "<=", ">=", "pmin", "pmax", "diff"))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.