File: rle-deprecated.R

package info (click to toggle)
r-cran-rle 0.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 288 kB
  • sloc: ansic: 91; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#  File R/rle-deprecated.R in package rle, currently hosted at https://github.com/statnet/rle .
#
#  This software is distributed under the GNU General Public License Version 3 or later.
#  A copy of this license may be found at https://www.gnu.org/licenses/gpl-3.0.en.html .
#
#  Copyright 2017-2020 Pavel N. Krivitsky and others (see inst/COPYRIGHT).
#######################################################################
#' @name rle-deprecated
#' @title Deprecated functions from `rle`
#' @param ... arguments to deprecated functions.
NULL

#' @rdname rle-deprecated
#' @export
compact.rle <- function(...){
  .Deprecated("compress")
  compress(...)
}