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
is.scalar
is.bool
checkmate
Taking a chunk out of #683...
Replace is.scalar() with checkmate::test_scalar() and is.bool() with checkmate::test_flag().
is.scalar()
checkmate::test_scalar()
is.bool()
checkmate::test_flag()
The text was updated successfully, but these errors were encountered:
Also replaced stopifnot(is.scalar()) etc with assert_count() or assert_numeric(len = 1) and similar.
stopifnot(is.scalar())
assert_count()
assert_numeric(len = 1)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Taking a chunk out of #683...
Replace
is.scalar()
withcheckmate::test_scalar()
andis.bool()
withcheckmate::test_flag()
.The text was updated successfully, but these errors were encountered: