File: deprecated.R

package info (click to toggle)
r-cran-rprojroot 2.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: sh: 12; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#' Deprecated functions
#'
#' Use [as_root_criterion()] and [is_root_criterion()], respectively.
#'
#' @inheritParams as_root_criterion
#' @inheritParams is_root_criterion
#' @keywords internal
#' @name deprecated
#' @export
as.root_criterion <- function(...) {
  as_root_criterion(...)
}

#' @export
#' @rdname deprecated
is.root_criterion <- function(...) {
  is_root_criterion(...)
}