337件ヒット
[1-100件を表示]
(0.159秒)
別のキーワード
種類
- インスタンスメソッド (249)
- 定数 (88)
ライブラリ
- ビルトイン (337)
キーワード
- === (12)
- =~ (9)
-
RUBY
_ COPYRIGHT (12) -
RUBY
_ DESCRIPTION (12) -
RUBY
_ ENGINE (12) -
RUBY
_ ENGINE _ VERSION (10) -
RUBY
_ PLATFORM (12) -
RUBY
_ RELEASE _ DATE (12) -
RUBY
_ REVISION (6) -
RUBY
_ VERSION (12) -
_ dump (12) - class (12)
- clone (12)
-
define
_ singleton _ method (24) - dup (12)
- freeze (12)
- hash (12)
- inspect (12)
- itself (12)
- method (12)
-
public
_ method (12) -
singleton
_ class (12) -
singleton
_ method (12) - tainted? (6)
- then (14)
-
to
_ s (12) -
to
_ str (12) -
yield
_ self (16)
検索結果
先頭5件
-
Object
:: RUBY _ DESCRIPTION -> String (24548.0) -
Ruby の詳細を表す文字列。
...Ruby の詳細を表す文字列。
ruby -v で表示される内容が格納されています。... -
Object
:: RUBY _ COPYRIGHT -> String (24536.0) -
Ruby のコピーライトを表す文字列。
...Ruby のコピーライトを表す文字列。... -
Object
:: RUBY _ RELEASE _ DATE -> String (24536.0) -
Ruby のリリース日を表す文字列。
...
Ruby のリリース日を表す文字列。... -
Object
:: RUBY _ PLATFORM -> String (24504.0) -
プラットフォームを表す文字列。
プラットフォームを表す文字列。 -
Object
:: RUBY _ ENGINE -> String (21608.0) -
Ruby処理系実装の種類を表す文字列。
...Ruby処理系実装の種類を表す文字列。
例:
$ ruby-1.9.1 -ve 'p RUBY_ENGINE'
ruby 1.9.1p0 (2009-03-04 revision 22762) [x86_64-linux]
"ruby"
$ jruby -ve 'p RUBY_ENGINE'
jruby 1.2.0 (ruby 1.8.6 patchlevel 287) (2009-03-16 rev 9419) [i386-java]
"jruby"... -
Object
:: RUBY _ REVISION -> String (21552.0) -
Ruby の GIT コミットハッシュを表す String オブジェクトです。
...
Ruby の GIT コミットハッシュを表す String オブジェクトです。... -
Object
:: RUBY _ VERSION -> String (21548.0) -
Ruby のバージョンを表す文字列。
...
Ruby のバージョンを表す文字列。
Ruby のバージョンは、major.minor.teeny という形式です。... -
Object
:: RUBY _ ENGINE _ VERSION -> String (21536.0) -
Ruby処理系実装のバージョンを表す文字列。
...Ruby処理系実装のバージョンを表す文字列。... -
Object
# public _ method(name) -> Method (12319.0) -
オブジェクトの public メソッド name をオブジェクト化した Method オブジェクトを返します。
...トの public メソッド name をオブジェクト化した
Method オブジェクトを返します。
@param name メソッド名を Symbol または String で指定します。
@raise NameError 定義されていないメソッド名や、
protected メソッド名、 private メソ......ッド名を引数として与えると発生します。
//emlist[][ruby]{
1.public_method(:to_int) #=> #<Method: Integer#to_int>
1.public_method(:p) # method `p' for class `Integer' is private (NameError)
//}
@see Object#method,Object#public_send,Module#public_instance_method...