You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Investigation of r-lib/lifecycle#167 reveals that getVersion() is much slower than it needs to be, due to going through versionInfo().
The versionInfo() helper is massively weighed down by having to call readCitationFile() to fill out the $citation slot, but you don't need this at all when getting the version in getVersion().
It would be much faster to have getVersion() just call the C++ function that returns the version number.
Investigation of r-lib/lifecycle#167 reveals that
getVersion()
is much slower than it needs to be, due to going throughversionInfo()
.The
versionInfo()
helper is massively weighed down by having to callreadCitationFile()
to fill out the$citation
slot, but you don't need this at all when getting the version ingetVersion()
.It would be much faster to have
getVersion()
just call the C++ function that returns the version number.The text was updated successfully, but these errors were encountered: