Usage
DeprecateKeywords.@depkws — Macro@depkws defMacro to deprecate keyword arguments. Use by wrapping a function signature, while using @deprecate(old_kw, new_kw) within the function signature to deprecate.
Examples
@depkws function f(; a=2, @deprecate(b, a))
a
end