apop?

apop?() Instance Public methods Always returns true.

write

write( output=$stdout, indent=-1, transitive=false, ie_hack=false ) Instance Public methods DEPRECATED See the rexml/formatters package Generates XML output of this object output Where to write the string. Defaults to $stdout indent The amount to indent this node by transitive Ignored ie_hack Ignored Examples c = CData.new( " Some text " ) c.write( $stdout ) #-> <![CDATA[ Some text ]]>

srand

srand(number = Random.new_seed) â old_seed Instance Public methods Seeds the system pseudo-random number generator, Random::DEFAULT, with number. The previous seed value is returned. If number is omitted, seeds the generator using a source of entropy provided by the operating system, if available (/dev/urandom on Unix systems or the RSA cryptographic provider on Windows), which is then combined with the time, the process id, and a sequence number. srand may be used to ensure repe

invoke_hidden_on_namespace

invoke_hidden_on_namespace(slave, ns, cmd, *args) Class Public methods

terminated?

terminated?() Instance Public methods Returns true if option processing has terminated, false otherwise.

in_groups

in_groups(number, fill_with = nil) Instance Public methods Splits or iterates over the array in number of groups, padding any remaining slots with fill_with unless it is false. %w(1 2 3 4 5 6 7 8 9 10).in_groups(3) {|group| p group} ["1", "2", "3", "4"] ["5", "6", "7", nil] ["8", "9", "10", nil] %w(1 2 3 4 5 6 7 8 9 10).in_groups(3, '&nbsp;') {|group| p group} ["1", "2", "3", "4"] ["5", "6", "7", "&nbsp;"] ["8", "9", "10", "&nbsp;"] %w(1 2 3 4 5 6 7).in_groups(3, fals

chars

chars() Instance Public methods This is a deprecated alias for each_char.

current_configinfo

current_configinfo(slot = nil) Instance Public methods

def_post_proc

def_post_proc(base_method, extend_method) Instance Public methods Extends the given base_method with a postfix call to the given extend_method.

new

Zlib::Inflate.new(window_bits = Zlib::MAX_WBITS) Class Public methods Creates a new inflate stream for decompression. window_bits sets the size of the history buffer and can have the following values: 0 Have inflate use the window size from the zlib header of the compressed stream. (8..15) Overrides the window size of the inflate header in the compressed stream. The window size must be greater than or equal to the window size of the compressed stream. Greater than 15 Add 3