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.

Methods

first   members   second  

Public Class methods

Return an array of strings containing the names of the node class‘s members.

Public Instance methods

the expression on the left hand side

the expression on the right hand side

[Validate]