Results for: "String# "

“ipv6hint” SvcParamIPv6 address hints

A generic resource abstract class.

Domain Name resource abstract class.

A Pointer to another DNS name.

Host Information resource.

Mailing list or mailbox information.

Converts Ruby link flags into something cargo understands

No documentation available
No documentation available

Class for reading entries out of a tar file

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

module IN contains ARPA Internet specific RRs.

Assigns the underlying string as other_string, and sets position to zero; returns other_string:

StringIO.open('foo') do |strio|
  p strio.string
  strio.string = 'bar'
  p strio.string
end

Output:

"foo"
"bar"

Related: StringIO#string (returns the underlying string).

Changes the string being scanned to str and resets the scanner. Returns str.

Create a new InterpolatedStringNode node

Create a new InterpolatedXStringNode node

Adds a post-installs hook that will be passed a Gem::DependencyInstaller and a list of installed specifications when Gem::DependencyInstaller#install is complete

Returns the list of Modules nested at the point of call.

module M1
  module M2
    $a = Module.nesting
  end
end
$a           #=> [M1::M2, M1]
$a[0].name   #=> "M1::M2"

Sets the ordering; see Ordering; returns the new ordering.

If the given ordering is PERMUTE and environment variable POSIXLY_CORRECT is defined, sets the ordering to REQUIRE_ORDER; otherwise sets the ordering to ordering:

options = GetoptLong.new
options.ordering == GetoptLong::PERMUTE # => true
options.ordering = GetoptLong::RETURN_IN_ORDER
options.ordering == GetoptLong::RETURN_IN_ORDER # => true
ENV['POSIXLY_CORRECT'] = 'true'
options.ordering = GetoptLong::PERMUTE
options.ordering == GetoptLong::REQUIRE_ORDER # => true

Raises an exception if ordering is invalid.

Returns the binding associated with prc.

def fred(param)
  proc {}
end

b = fred(99)
eval("param", b.binding)   #=> 99
Search took: 5ms  ·  Total Results: 3654