Feature description
I have a problem with understanding the following:
data <- ...
data <- verify(data)
...
For me, the verify() should be more similar to the assert like below:
data <- ...
verify(data)
...
With this, we should probably modify verify() so that it does not return if there is no error.
Ideally, we should have assert() that raises error or silently pass and check() that returns boolean. I just can't fit the current implementation of verify() that throws or pass the object. WDYT?
Code of Conduct
Contribution Guidelines
Security Policy
Feature description
I have a problem with understanding the following:
For me, the
verify()should be more similar to the assert like below:With this, we should probably modify
verify()so that it does not return if there is no error.Ideally, we should have
assert()that raises error or silently pass andcheck()that returns boolean. I just can't fit the current implementation ofverify()that throws or pass the object. WDYT?Code of Conduct
Contribution Guidelines
Security Policy