Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a deprecate adverb function [Feature Request] #188

Closed
DanChaltiel opened this issue Dec 26, 2024 · 1 comment
Closed

Add a deprecate adverb function [Feature Request] #188

DanChaltiel opened this issue Dec 26, 2024 · 1 comment

Comments

@DanChaltiel
Copy link

Hi,

In experimental packages growing more mature, I end up with many functions being simply renamed.

This causes many functions to be just a call to deprecate_warn() and then a call to the replacement function. I think it would be clearer if there was a purrr-style adverb to be used.

Something like this:

deprecatedly = function(f, what, when, with=rlang::caller_arg(f), details=NULL, type="warn"){
  if(!stringr::str_ends(with, "\\(\\)")) with=paste0(with,"()")
  if(!stringr::str_ends(what, "\\(\\)")) what=paste0(what,"()")
  function(...){
    lifecycle::deprecate_warn(when, what, with, details)
    f(...)
  }
}

new_function = function(){
  "foo"
}

old_function = deprecatedly(new_function, what="old_function", when="0.1")

old_function()
#> Warning: `old_function()` was deprecated in <NA> 0.1.
#> ℹ Please use `new_function()` instead.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
#> generated.
#> [1] "foo"

Created on 2024-12-26 with reprex v2.1.1

@lionel-
Copy link
Member

lionel- commented Jan 6, 2025

Sorry, this is out of scope for this package.

@lionel- lionel- closed this as completed Jan 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants