in_path?

in_path?(file) Instance Public methods Is file in ENV?

new

new(addr, types, func = nil) Class Public methods Wraps the C pointer addr as a C struct with the given types. When the instance is garbage collected, the C function func is called. See also Fiddle::Pointer.new

sort

sort(*params, &b) Instance Public methods

current_configinfo

current_configinfo(win, slot = nil) Class Public methods

inspect

obj.inspect â string Instance Public methods Returns a string containing a human-readable representation of obj. By default, show the class name and the list of the instance variables and their values (by calling inspect on each of them). User defined classes should override this method to make better representation of obj. When overriding this method, it should return a string whose encoding is compatible with the default external encoding. [ 1, 2, 3..4, 'five' ].inspect #=&

to_io

to_io() Instance Public methods

_get_variable 2

_get_variable(var, flag) Instance Public methods

bar_configure

bar_configure(*args) 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

since

since(seconds) Instance Public methods Returns a new Time representing the time a number of seconds since the instance time in