File: deprecated.R

package info (click to toggle)
r-cran-sys 3.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: ansic: 540; sh: 13; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#' Deprecated functions
#'
#' These functions have moved into the `unix` package. Please update
#' your references.
#'
#' @export
#' @name sys-deprecated
#' @rdname deprecated
#' @param ... see respective functions in the unix package
eval_safe <- function(...){
  .Deprecated('unix::eval_safe', 'sys')
  unix::eval_safe(...)
}

#' @export
#' @rdname deprecated
eval_fork <- function(...){
  .Deprecated('unix::eval_fork', 'sys')
  unix::eval_fork(...)
}