Learn R Programming

toaster (version 0.5.5)

toa_dep: Give a deprecation error, warning, or messsage, depending on version number.

Description

Version numbers have the format .., like 0.9.2. This function compares the current version number of toaster against the specified version, which is the most recent version before the function (or other object) was deprecated.

Usage

toa_dep(version, msg)

Arguments

version
The last version of toaster where this function was good (in other words, the last version where it was not deprecated).
msg
The message to print.

Details

toa_dep will give an error, warning, or message, depending on the difference between the current toaster version and the specified version.

If the current major number is greater than version's major number, or if the current minor number is more than 1 greater than version's minor number, give an error.

If the current minor number differs from version's minor number by one, give a warning.

If the current subminor number differs from version's subminor number, print a message.

See Also

gg_dep