るりまサーチ

最速Rubyリファレンスマニュアル検索!
249件ヒット [101-200件を表示] (0.124秒)

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io readlines
  5. io each_line

検索結果

<< < 1 2 3 > >>

RSS::Maker::ImageBase#description=() (9101.0)

@todo

@todo

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

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

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

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

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

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

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

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

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

RSS::Maker::TextinputBase#description (9101.0)

@todo

@todo

絞り込み条件を変える

RSS::Maker::TextinputBase#description=() (9101.0)

@todo

@todo

RSS::SyndicationModel#sy_updateBase (9101.0)

@todo

@todo

RSS::SyndicationModel#sy_updateBase= (9101.0)

@todo

@todo

RubyVM::InstructionSequence#label -> String (3007.0)

self が表す命令シーケンスのラベルを返します。通常、メソッド名、クラス名、 モジュール名などで構成されます。

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

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

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

# irb
> iseq = RubyVM::Instruction...
...Sequence.compile_file('/tmp/method.rb')
> iseq.label # => "<main>"

例3:

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

RubyVM::InstructionSequence.of(method(:hello)).label
# => "hello"

@see RubyVM::InstructionSequence#base_label...
<< < 1 2 3 > >>