[]=

[]=(k, v) Instance Public methods Also aliased as: add

next

next(win) Class Public methods

atan2

Math.atan2(y, x) â float Class Public methods Computes the arc tangent given y and x. Returns -PI..PI. Math.atan2(-0.0, -1.0) #=> -3.141592653589793 Math.atan2(-1.0, -1.0) #=> -2.356194490192345 Math.atan2(-1.0, 0.0) #=> -1.5707963267948966 Math.atan2(-1.0, 1.0) #=> -0.7853981633974483 Math.atan2(-0.0, 1.0) #=> -0.0 Math.atan2(0.0, 1.0) #=> 0.0 Math.atan2(1.0, 1.0) #=> 0.7853981633974483 Math.atan2(1.0, 0.0) #=> 1.5707963267948966 Math.atan2(1.0,

render_collection

render_collection() Instance Public methods

createComment

createComment(arg0) Instance Public methods IXMLDOMComment createComment create a comment node BSTR arg0 --- data [IN]

to_s

to_s() Instance Public methods Memoizes the value returned by calculate_ip and returns it for ActionDispatch::Request to use.

wait_until

wait_until() Instance Public methods Calls wait repeatedly until the given block yields a truthy value.

previousSibling

previousSibling() Instance Public methods IXMLDOMNode previousSibling left sibling of the node

default_sequence_name

default_sequence_name(table, column) Instance Public methods

syswrite

ios.syswrite(string) â integer Instance Public methods Writes the given string to ios using a low-level write. Returns the number of bytes written. Do not mix with other methods that write to ios or you may get unpredictable results. Raises SystemCallError on error. f = File.new("out", "w") f.syswrite("ABCDEF") #=> 6