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