Description Usage Arguments Value Author(s) See Also Examples
Check object consistency.
1 2 | ## S3 method for class 'Alphabet'
checkConsistency(this, ...)
|
this |
An object. |
... |
Not used. |
Returns an invisible TRUE if no inconsistencies found, throws an error otherwise.
Botond Sipos, Gregory Jordan
For more information see Alphabet
.
1 2 3 4 5 6 7 8 9 10 | # create an alphabet object
a<-Alphabet(symbols=c(0,1));
# check consistency
print(checkConsistency(a));
# mess up with the internals
a$.symbols[1]<-"BAD";
# NOT run: cosistency check now will throw an error
## Not run: print(checkConsistency(a));
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.