R/classes.r

Defines functions is.sr_search is.sr_high is.sr_facet

Documented in is.sr_facet is.sr_high is.sr_search

#' Test for sr_facet class
#' @export
#' @param x Input
#' @rdname is-sr
is.sr_facet <- function(x) inherits(x, "sr_facet")

#' Test for sr_high class
#' @export
#' @rdname is-sr
is.sr_high <- function(x) inherits(x, "sr_high")

#' Test for sr_search class
#' @export
#' @rdname is-sr
is.sr_search <- function(x) inherits(x, "sr_search")

Try the solrium package in your browser

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

solrium documentation built on May 19, 2021, 9:06 a.m.