るりまサーチ

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

別のキーワード

  1. _builtin to_c
  2. etc sc_2_c_dev
  3. etc sc_2_c_bind
  4. tracer display_c_call
  5. tracer display_c_call=

ライブラリ

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

CSV#close_write -> nil (32200.0)

IO#close_write に委譲します。

...IO#close_write に委譲します。


@see IO#close_write...

ConditionVariable (32016.0)

Alias of Thread::ConditionVariable

...Alias of Thread::ConditionVariable...

Class#inherited(subclass) -> () (29200.0)

クラスのサブクラスが定義された時、新しく生成されたサブクラスを引数 にインタプリタから呼び出されます。このメソッドが呼ばれるタイミングは クラス定義文の実行直前です。

...bclass プログラム内で新たに定義された自身のサブクラスです。

//emlist[例][ruby]{
c
lass Foo
def Foo.inherited(subclass)
puts "class \"#{self}\" was inherited by \"#{subclass}\""
end
end
c
lass Bar < Foo
puts "executing class body"
end

# => class "Foo" was inherite...
...d by "Bar"
# executing class body
//}...

CGI::Html3#element_init (29100.0)

@todo

@todo

CGI::Html4#element_init (29100.0)

@todo

@todo

絞り込み条件を変える

CGI::Html4Fr#element_init (29100.0)

@todo

@todo

CGI::Html4Tr#element_init (29100.0)

@todo

@todo

CGI::HtmlExtension#submit(attributes) -> String (29100.0)

タイプが submit である input 要素を生成します。

...タイプが submit である input 要素を生成します。

@param attributes 属性をハッシュで指定します。

例:
submit({ "VALUE" => "ok", "NAME" => "button1", "ID" => "foo" })
# <INPUT TYPE="submit" VALUE="ok" NAME="button1" ID="foo">...

CGI::HtmlExtension#submit(value = nil, name = nil) -> String (29100.0)

タイプが submit である input 要素を生成します。

...タイプが submit である input 要素を生成します。

@param value value 属性の値を指定します。

@param name name 属性の値を指定します。

例:
submit
# <INPUT TYPE="submit">

submit("ok")
# <INPUT TYPE="submit" VALUE="ok">

submit("ok", "button1")...
...# <INPUT TYPE="submit" VALUE="ok" NAME="button1">...
<< 1 2 3 ... > >>