R/operators.R

Defines functions `%==%` `%<=%` `%>=%`

`%>=%` <- function(x, y){ (all.equal(x, y)==TRUE | (x > y)) }
`%<=%` <- function(x, y){ (all.equal(x, y)==TRUE | (x < y)) }
`%==%` <- function(x, y){ (all.equal(x, y)==TRUE) }

Try the MCDA package in your browser

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

MCDA documentation built on Nov. 24, 2023, 5:10 p.m.