R/utils.R

#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
NULL
#' Compound Assignment Pipe operator
#'
#' See \code{magrittr::\link[magrittr]{\%<>\%}} for details.
#'
#' @name %<>%
#' @rdname compound
#' @keywords internal
#' @export
#' @importFrom magrittr %<>%
#' @usage lhs \%<>\% rhs
NULL


#' @title NotIn
#' @name %nin%
#' @keywords internal
#' @export
#' @description Negative in
#'
#' @importFrom purrr compose
#'
`%nin%` <- compose(`!`,`%in%`)

#' @importFrom utils globalVariables
globalVariables(c("."))
milescsmith/SeuratPlotly documentation built on June 5, 2019, 1:16 a.m.