eql?

ary.eql?(other) â true or false Instance Public methods Returns true if self and other are the same object, or are both arrays with the same content (according to Object#eql?).

parent=

parent=( node ) Instance Public methods

readline

readline(rs = $/) Instance Public methods

method_missing

method_missing(name, *args) Instance Public methods

*

ary * int â new_aryary * str â new_string Instance Public methods Repetition â With a String argument, equivalent to ary.join(str). Otherwise, returns a new array built by concatenating the int copies of self. [ 1, 2, 3 ] * 3 #=> [ 1, 2, 3, 1, 2, 3, 1, 2, 3 ] [ 1, 2, 3 ] * "," #=> "1,2,3"

table_exists?

table_exists?(name) Instance Public methods Returns true if table exists. If the schema is not specified as part of name then it will only find tables within the current schema search path (regardless of permissions to access tables in other schemas)

selection_clear

selection_clear() Instance Public methods

getbkgd

getbkgd() Instance Public methods Returns an Interer (ch) for the character property in the current window.

rewhere

rewhere(conditions) Instance Public methods Allows you to change a previously set where condition for a given attribute, instead of appending to that condition. Post.where(trashed: true).where(trashed: false) # => WHERE `trashed` = 1 AND `trashed` = 0 Post.where(trashed: true).rewhere(trashed: false) # => WHERE `trashed` = 0 Post.where(active: true).where(trashed: true).rewhere(trashed: false) # => WHERE `active` = 1 AND `trashed`

close

close() Instance Public methods Closes the SSLSocket and flushes any unwritten data.