We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ver_before()
ver_after()
These functions would take a version code and a vector of those and return the previous or the next version code than the target one. Like that:
ver_before("1.4.0", c("1.3.1", "1.5.0", "1.4.0", "1.3.2")) # [1] "1.3.2"
In general, this would work like applying ver_latest() on versions that are ver_is_older() (and analogously for ver_after()).
ver_latest()
ver_is_older()
The text was updated successfully, but these errors were encountered:
ErdaradunGaztea
No branches or pull requests
These functions would take a version code and a vector of those and return the previous or the next version code than the target one. Like that:
In general, this would work like applying
ver_latest()
on versions that arever_is_older()
(and analogously forver_after()
).The text was updated successfully, but these errors were encountered: