String value associated with the Node.
Returns true if this Object and other are of the same type and have the equivalent value otherwise false is returned. @param [Object] other Object to compare self to.
# File lib/ox/node.rb, line 17 def eql?(other) return false if (other.nil? or self.class != other.class) other.value == self.value end