nodeType() Instance Public methods
nodeValue() Instance Public methods
removeChild(node) Instance Public methods
new(start_state, max_counter) Class Public methods
activate() Instance Public methods
num.modulo(numeric) â real Instance Public methods x.modulo(y) means x-y*(x/y).floor Equivalent to num.divmod(aNumeric). See Numeric#divmod.
+num â num Instance Public methods Unary PlusâReturns the receiver's value.
-num â numeric Instance Public methods Unary MinusâReturns the receiver's value, negated.
number other â 0 or nil Instance Public methods Returns zero if number equals other, otherwise nil is returned if the two values are incomparable.
num.abs â numeric Instance Public methods Returns the absolute value of num. 12.abs #=> 12 (-34.56).abs #=> 34.56 -34.56.abs #=> 34.56
Page 655 of 11844