is_incomplete_terms {term} | R Documentation |
Is Incomplete Terms
Description
Tests whether a term vector has absent elements. The vector should not require repairing.
Usage
is_incomplete_terms(x, ...)
Arguments
x |
The object. |
... |
Unused. |
Value
A logical scalar indicating whether the object's terms are incomplete.
See Also
term-vector()
and complete_terms()
Examples
is_incomplete_terms(term("b[2]"))
is_incomplete_terms(term("b[2]", "b[1]"))
is_incomplete_terms(term("b[2]", "b[1]", "b[1]"))
[Package term version 0.3.5 Index]