Results for: "remove_const"

No documentation available

Calls superclass method.

Returns a duplicate of self, in column mode (see Column Mode):

source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
table = CSV.parse(source, headers: true)
table.mode # => :col_or_row
dup_table = table.by_col
dup_table.mode # => :col
dup_table.equal?(table) # => false # It's a dup

This may be used to chain method calls without changing the mode (but also will affect performance and memory usage):

dup_table.by_col['Name']

Also note that changes to the duplicate table will not affect the original.

Sets the mode for self to column mode (see Column Mode); returns self:

source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
table = CSV.parse(source, headers: true)
table.mode # => :col_or_row
table1 = table.by_col!
table.mode # => :col
table1.equal?(table) # => true # Returned self
No documentation available

Stop this server.

No documentation available

Posts HTML form data to the specified URI object. The form data must be provided as a Hash mapping from String to String. Example:

{ "cmd" => "search", "q" => "ruby", "max" => "50" }

This method also does Basic Authentication if and only if url.user exists. But userinfo for authentication is deprecated (RFC3986). So this feature will be removed.

Example:

require 'net/http'

Net::HTTP.post_form URI('http://www.example.com/search.cgi'),
                    { "q" => "ruby", "max" => "50" }
No documentation available
No documentation available
No documentation available
No documentation available
No documentation available

Set the encoding to use for the response body. If given a String, find the related Encoding.

Validates typecode v, returns true or false.

Private setter for the typecode v.

See also URI::FTP.typecode=.

Iterates over each option, passing the option to the block.

No documentation available
No documentation available
No documentation available
No documentation available

Rule#hash

Sym#heads

Sym#self_null?

Sym#locate

Search took: 4ms  ·  Total Results: 3470