charset

charset() Instance Public methods Returns the database character set.

signal_status

signal_status(status) Instance Public methods Evaluates the given block using the given status.

index

index() Instance Public methods

Float

Float(arg) â float Instance Public methods Returns arg converted to a float. Numeric types are converted directly, the rest are converted using arg.to_f. As of Ruby 1.8, converting nil generates a TypeError. Float(1) #=> 1.0 Float("123.456") #=> 123.456

fetch

ary.fetch(index) â objary.fetch(index, default) â objary.fetch(index) { |index| block } â obj Instance Public methods Tries to return the element at position index, but throws an IndexError exception if the referenced index lies outside of the array bounds. This error can be prevented by supplying a second argument, which will act as a default value. Alternatively, if a block is given it will only be executed when an invalid index is referenced. Neg

new

Array.new(size=0, obj=nil)Array.new(array)Array.new(size) {|index| block } Class Public methods Returns a new array. In the first form, if no arguments are sent, the new array will be empty. When a size and an optional obj are sent, an array is created with size copies of obj. Take notice that all elements will reference the same object obj. The second form creates a copy of the array passed as a parameter (the array is generated by calling #to_ary on the parameter). first_array

window_cget_strict

window_cget_strict(tagOrId, option) Instance Public methods

refresh

refresh() Instance Public methods

remove 2

remove(*wins) Instance Public methods

bindinfo

bindinfo(seq=nil) Instance Public methods