684件ヒット
[101-200件を表示]
(0.064秒)
種類
ライブラリ
- ビルトイン (168)
- forwardable (84)
- openssl (36)
- pp (12)
- prettyprint (12)
- psych (36)
-
rdoc
/ context (72) -
rdoc
/ parser / ruby (12) -
rdoc
/ single _ class (12) -
rdoc
/ top _ level (48) - singleton (48)
- tracer (12)
クラス
- BasicObject (36)
- Encoding (48)
- Module (12)
- Object (60)
-
OpenSSL
:: SSL :: SSLContext (12) - PP (12)
- PrettyPrint (12)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Scalar (24) -
RDoc
:: Context (72) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: TopLevel (48) - Tracer (12)
モジュール
-
OpenSSL
:: SSL (24) - Process (12)
- SingleForwardable (72)
- Singleton (36)
キーワード
- MACCYRILLIC (12)
- MACICELAND (12)
- MacCyrillic (12)
- MacIceland (12)
-
OP
_ SINGLE _ DH _ USE (12) -
OP
_ SINGLE _ ECDH _ USE (12) - SINGLE (12)
-
SINGLE
_ QUOTED (12) - SingleClass (12)
- SingleForwardable (12)
- Singleton (12)
-
add
_ class (12) -
add
_ class _ or _ module (24) -
add
_ module (12) -
all
_ classes _ and _ modules (12) - classes (12)
-
clock
_ gettime (12) - clone (12)
-
def
_ delegator (12) -
def
_ delegators (12) -
def
_ single _ delegator (12) -
def
_ single _ delegators (12) -
define
_ singleton _ method (24) - delegate (12)
- dup (12)
-
each
_ classmodule (12) -
find
_ class _ named (12) -
find
_ local _ symbol (12) - instance (12)
- irb (12)
- manual page (12)
- new (12)
-
rb
_ define _ singleton _ method (12) -
rb
_ obj _ singleton _ methods (12) -
rb
_ singleton _ class (12) -
rb
_ singleton _ class _ attached (12) -
rb
_ singleton _ class _ clone (12) -
rb
_ singleton _ class _ new (12) -
rdoc
/ single _ class (12) -
run
_ single _ final (12) - scalar (12)
-
set
_ visibility _ for (12) -
single
_ delegate (12) -
singleline
_ format (12) -
singleline
_ pp (12) - singleton (12)
-
singleton
_ class (12) -
singleton
_ class? (12) -
singleton
_ method (12) -
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) -
singleton
_ methods (12)
検索結果
先頭5件
-
SingleForwardable
# def _ delegator(accessor , method , ali = method) -> () (15101.0) -
メソッドの委譲先を設定します。
...メソッド
@param ali 委譲元のメソッド
委譲元のオブジェクトで ali が呼び出された場合に、
委譲先のオブジェクトの method へ処理が委譲されるようになります。
委譲元と委譲先のメソッド名が同じ場合は, ali を省略するこ......とが可能です。
def_delegator は def_singleton_delegator の別名になります。
@see SingleForwardable#def_delegators... -
SingleForwardable
# def _ delegators(accessor , *methods) -> () (15101.0) -
メソッドの委譲先をまとめて設定します。
...delegators は def_singleton_delegators の別名になります。
また、以下の 2 つの例は同じ意味です。
def_delegators :@records, :size, :<<, :map
def_delegator :@records, :size
def_delegator :@records, :<<
def_delegator :@records, :map
@see SingleForwardable#def_deleg... -
SingleForwardable
# delegate(hash) -> () (15101.0) -
メソッドの委譲先を設定します。
...メソッドの委譲先を設定します。
@param hash 委譲先のメソッドがキー、委譲先のオブジェクトが値の
Hash を指定します。キーは Symbol、
String かその配列で指定します。
@see Forwardable#delegate... -
VALUE rb
_ obj _ singleton _ methods(int argc , VALUE *argv , VALUE obj) (12400.0) -
Object#singleton_methods の実体。 オブジェクト obj に定義されている特異メソッド名のリストを 文字列の配列で返す。
...Object#singleton_methods の実体。
オブジェクト obj に定義されている特異メソッド名のリストを
文字列の配列で返す。... -
VALUE rb
_ singleton _ class(VALUE obj) (12300.0) -
obj に特異クラスを導入し、その特異クラスを返します。 すでに特異クラスが導入されているときはそれをそのまま返します。
obj に特異クラスを導入し、その特異クラスを返します。
すでに特異クラスが導入されているときはそれをそのまま返します。
obj が特異メソッドを定義できない型のオブジェクトである
ときは例外 TypeError を発生します。 -
VALUE rb
_ singleton _ class _ clone(VALUE klass) (12300.0) -
特異クラス klass を clone して返します。 klass が特異クラスでないときはただ klass を返します。
...特異クラス klass を clone して返します。
klass が特異クラスでないときはただ klass を返します。... -
VALUE rb
_ singleton _ class _ new(VALUE super) (12300.0) -
super をスーパークラスとする特異クラスを生成し、返します。
super をスーパークラスとする特異クラスを生成し、返します。 -
static VALUE run
_ single _ final(VALUE *args) (12300.0) -
-
Psych
:: Nodes :: Scalar :: SINGLE _ QUOTED -> Integer (12217.0) -
single quoted style を表します。
...single quoted style を表します。
@see Psych::Nodes::Scalar.new,
Psych::Nodes::Scalar#style,
Psych::Handler#scalar...