iconphoto_default 2

iconphoto_default(*imgs) Instance Public methods Also aliased as: wm_iconphoto_default

new

Fiddle::Pointer.new(address) => fiddle_cptrnew(address, size) => fiddle_cptrnew(address, size, freefunc) => fiddle_cptr Class Public methods Create a new pointer to address with an optional size and freefunc. freefunc will be called when the instance is garbage collected.

xview_moveto

xview_moveto(*idxs) Instance Public methods Alias for: view_moveto

new

Mutex.new â mutex Class Public methods Creates a new Mutex

new

SDBM.new(filename, mode = 0666) Class Public methods Creates a new database handle by opening the given filename. SDBM actually uses two physical files, with extensions '.dir' and '.pag'. These extensions will automatically be appended to the filename. If the file does not exist, a new file will be created using the given mode, unless mode is explicitly set to nil. In the latter case, no database will be created. If the file exists, it will be opened in read/write mode. If this fa

env

env() Instance Public methods

app

app() Instance Public methods

load_rb

load_rb(dir) Class Public methods

dataType

dataType() Instance Public methods VARIANT dataType the data type of the node

assert_valid_keys

assert_valid_keys(*valid_keys) Instance Public methods Validate all keys in a hash match *valid_keys, raising ArgumentError on a mismatch. Note that keys are NOT treated indifferently, meaning if you use strings for keys but assert symbols as keys, this will fail. { name: 'Rob', years: '28' }.assert_valid_keys(:name, :age) # => raises "ArgumentError: Unknown key: :years. Valid keys are: :name, :age" { name: 'Rob', age: '28' }.assert_valid_keys('name', 'age') # => raises "Argu