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
Use decorators on Value Objects such that:
decorators$assert_input_type
decorators$assert_input_equal_length
See related issue
Cars <- function(model = NA_charater, hp = NA_real_){ data.frame(model = model, hp = hp) } Cars <- decorators$assert_input_type(Cars) Cars <- decorators$assert_input_equal_length(Cars)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Use decorators on Value Objects such that:
decorators$assert_input_type
checks input arg complies with default value typedecorators$assert_input_equal_length
checks input args are of the same lengthSee related issue
The text was updated successfully, but these errors were encountered: