R/operators.R

Defines functions `%w/o%` `%pst%`

`%without%` <- `%wo%` <- `%w/o%` <- function(x, y){
  x[!x %in% y ]
}

## # string concatenation operator
`%pst%` <- function(s1, s2) {
	paste(s1, s2, sep = "") 
}                                  

Try the RNMImport package in your browser

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

RNMImport documentation built on May 2, 2019, 5:21 p.m.