inspect

stat.inspect â string Instance Public methods Produce a nicely formatted description of stat. File.stat("/etc/passwd").inspect #=> "#<File::Stat dev=0xe000005, ino=1078078, mode=0100644, # nlink=1, uid=0, gid=0, rdev=0x0, size=1374, blksize=4096, # blocks=8, atime=Wed Dec 10 10:16:12 CST 2003, # mtime=Fri Sep 12 15:41:41 CDT 2003, # ctime=Mon Oct 27 11:20:27 CST 2003>"

redirect_to

redirect_to(event) Instance Public methods

parse!

parse!(args) Instance Public methods

columns

columns(*indices) Instance Public methods get listbox widgets

_routes

_routes() Instance Public methods

add_include

add_include(include) Instance Public methods Adds include to Object instead of self.

deconstantize

deconstantize() Instance Public methods Removes the rightmost segment from the constant expression in the string. 'Net::HTTP'.deconstantize # => "Net" '::Net::HTTP'.deconstantize # => "::Net" 'String'.deconstantize # => "" '::String'.deconstantize # => "" ''.deconstantize # => "" See also demodulize.

sysseek

ios.sysseek(offset, whence=IO::SEEK_SET) â integer Instance Public methods Seeks to a given offset in the stream according to the value of whence (see IO#seek for values of whence). Returns the new offset into the file. f = File.new("testfile") f.sysseek(-13, IO::SEEK_END) #=> 53 f.sysread(10) #=> "And so on."

ipv6_pktinfo 2

ancdata.ipv6_pktinfo => [addr, ifindex] Instance Public methods Extracts addr and ifindex from IPV6_PKTINFO ancillary data. IPV6_PKTINFO is defined by RFC 3542. addr = Addrinfo.ip("::1") ifindex = 0 ancdata = Socket::AncillaryData.ipv6_pktinfo(addr, ifindex) p ancdata.ipv6_pktinfo #=> [#<Addrinfo: ::1>, 0]

nodeFromID

nodeFromID(arg0) Instance Public methods IXMLDOMNode nodeFromID retrieve node from it's ID BSTR arg0 --- idString [IN]