るりまサーチ

最速Rubyリファレンスマニュアル検索!
1855件ヒット [1-100件を表示] (0.158秒)

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils rm_r
  5. fileutils cp_r

ライブラリ

キーワード

検索結果

<< 1 2 3 ... > >>

RSS::Maker::RSSBase#rss_version (21201.0)

@todo 作成するRSSのバージョンを返します.

...@todo
作成するRSSのバージョンを返します....

CGI::HtmlExtension#base(href = "") -> String (18230.0)

base 要素を生成します。

...
base
要素を生成します。

@param href 文字列を指定します。属性をハッシュで指定することもできます。

例:
base
("http://www.example.com/cgi")
# => "<BASE HREF=\"http://www.example.com/cgi\">"...

OpenURI::Meta#base_uri -> URI (15308.0)

リソースの実際の URI を URI オブジェクトとして返します。 リダイレクトされた場合は、リダイレクトされた後のデータが存在する URI を返します。

...RI を URI オブジェクトとして返します。
リダイレクトされた場合は、リダイレクトされた後のデータが存在する URI を返します。

//emlist[例][ruby]{
r
equire 'open-uri'
open('http://www.ruby-lang.org/') {|f|
p f.base_uri
#=> #<URI::HTTP:0xb7043aa0 UR...
...L:http://www.ruby-lang.org/en/>
}
//}...
...際の URI を URI オブジェクトとして返します。
リダイレクトされた場合は、リダイレクトされた後のデータが存在する URI を返します。

//emlist[例][ruby]{
r
equire 'open-uri'
URI.open('http://www.ruby-lang.org/') {|f|
p f.base_uri
#=> #<URI::HTTP:0...
...xb7043aa0 URL:http://www.ruby-lang.org/en/>
}
//}...

RSS::Maker::ChannelBase::SkipHoursBase#new_hour (15101.0)

@todo

...@todo

新しくhourを作成し,返します.作成された
hourはhourリストの最後
に追加されています....

RSS::Maker::RSSBase#version (15101.0)

@todo 作成するXMLのバージョンを返します.

@todo
作成するXMLのバージョンを返します.

絞り込み条件を変える

RSS::Maker::RSSBase#version=() (15101.0)

@todo 作成するXMLのバージョンを設定します.

@todo
作成するXMLのバージョンを設定します.

RSS::Maker::ChannelBase::SkipHoursBase::HourBase#content (15001.0)

@todo

@todo

RSS::Maker::ChannelBase::SkipHoursBase::HourBase#content=() (15001.0)

@todo

@todo

RubyVM::InstructionSequence#base_label -> String (12220.0)

self が表す命令シーケンスの基本ラベルを返します。

...す。

例1:irb で実行した場合

iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.base_label
# => "<compiled>"

例2: RubyVM::InstructionSequence.compile_file を使用した場合

# /tmp/method.rb
def hello...
...lo, world"
end

# irb
> iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.base_label # => "<main>"

例3:

# /tmp/method2.rb
def hello
puts "hello, world"
end

R
ubyVM::InstructionSequence.of(method(:hello)).base_label
# => "hello"

@see RubyVM::Instructio...
<< 1 2 3 ... > >>