data class Or : DirFormula, Binary<Or, DirFormula>
Logical disjunction. A path will match this restriction only if it matches any of the left and right restrictions.
<init> |
Or(left: DirFormula, right: DirFormula)
Logical disjunction. A path will match this restriction only if it matches any of the left and right restrictions. |
left |
val left: DirFormula
The child of this element which is the root of the left subtree. |
right |
val right: DirFormula
The child of this element which is the root of the right subtree. |
node |
open val node: DirFormula
DirFormula is also the node in the tree, so |
toString |
fun toString(): String
Return string which uniquely represents this formula and can be parsed to create an equivalent object. |