current_token_windowconfiginfo

current_token_windowconfiginfo(win, slot=nil) Class Public methods

deleteData

deleteData(arg0, arg1) Instance Public methods VOID deleteData delete string within the value I4 arg0 --- offset [IN] I4 arg1 --- count [IN]

primitive_convert

ec.primitive_convert(source_buffer, destination_buffer) â symbolec.primitive_convert(source_buffer, destination_buffer, destination_byteoffset) â symbolec.primitive_convert(source_buffer, destination_buffer, destination_byteoffset, destination_bytesize) â symbolec.primitive_convert(source_buffer, destination_buffer, destination_byteoffset, destination_bytesize, opt) â symbol Instance Public methods possible opt elements: hash form: :partial_input => true # source bu

eql?

hash.eql?(other) â true or false Instance Public methods Returns true if hash and other are both hashes with the same content.

clear

clear() Instance Public methods

lambda?

prc.lambda? â true or false Instance Public methods Returns true for a Proc object for which argument handling is rigid. Such procs are typically generated by lambda. A Proc object generated by proc ignores extra arguments. proc {|a,b| [a,b] }.call(1,2,3) #=> [1,2] It provides nil for missing arguments. proc {|a,b| [a,b] }.call(1) #=> [1,nil] It expands a single array argument. proc {|a,b| [a,b] }.call([1,2]) #=> [1,2] A Proc object generated by lambda doe

timeout

timeout(sec, klass = nil) Class Public methods Perform an operation in a block, raising an error if it takes longer than sec seconds to complete. sec Number of seconds to wait for the block to terminate. Any number may be used, including Floats to specify fractional seconds. A value of 0 or nil will execute the block without any timeout. klass Exception Class to raise if the block fails to terminate in sec seconds. Omitting will use the default, Timeout::Error Returns the

console

console(&blk) Class Public methods

remove_dir

remove_dir(path, force = false) Class Public methods Removes a directory dir and its contents recursively. This method ignores StandardError if force is true.

render

render(options = {}, locals = {}, &block) Instance Public methods Returns the result of a render that's dictated by the options hash. The primary options are: :partial - See ActionView::PartialRenderer. :file - Renders an explicit template file (this used to be the old default), add :locals to pass in those. :inline - Renders an inline template similar to how it's done in the controller. :text - Renders the text passed in out. :plain - Renders the text passed in out. S