249件ヒット
[101-200件を表示]
(0.124秒)
別のキーワード
クラス
- Array (21)
-
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Maker :: RSSBase (36) -
RSS
:: Maker :: TextinputBase (24) -
RubyVM
:: InstructionSequence (24) - String (12)
-
Thread
:: Backtrace :: Location (24)
モジュール
-
CGI
:: HtmlExtension (12) -
RSS
:: SyndicationModel (24)
キーワード
-
base
_ label (24) - description (48)
- description= (48)
- label (24)
- pack (21)
-
rss
_ version (12) -
sy
_ updateBase (12) -
sy
_ updateBase= (12) - unpack (12)
- version (12)
- version= (12)
検索結果
先頭5件
-
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...