| Class | Node::OR |
| In: |
ext/nodeinfo.c
|
| Parent: | Node |
Represents a logical ‘or’ of the form:
first || second
The expression will short-circuit and yield the result of the left hand side if it is true, else it will evaluate the right hand side and use it as the result of the expression.