Class Node::OP_ASGN_AND
In: ext/nodeinfo.c
Parent: Node

Represents an expression of the form:

  recv &&= value

Ruby will evaluate the expression on the left hand side of the assignment; if it is true, then it will assign the result of the expression on the right hand side to the receiver on the left hand side.

Methods

members   recv   value  

Public Class methods

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

Public Instance methods

an expression representing the left hand side of the assignment

the value to assign to the local variable

[Validate]