るりまサーチ

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

別のキーワード

  1. openssl g
  2. openssl g=
  3. dsa g=
  4. dsa g
  5. dh g=

ライブラリ

クラス

モジュール

キーワード

検索結果

<< 1 2 > >>

Win32::Registry#parent (21102.0)

@todo

...@todo

親のキーを表す Win32::Registry オブジェクトを返します。
定義済キーでは nil を返します。...

REXML::Parent#length -> Integer (9101.0)

保持している子ノードの数を返します。

保持している子ノードの数を返します。

RDoc::CodeObject#parent_file_name -> String (6224.0)

self.parent のファイル名を返します。

...self.parent のファイル名を返します。

@see RDoc::CodeObject#parent...

RDoc::CodeObject#parent_name -> String (6224.0)

self.parent の名前を返します。

...self.parent の名前を返します。

@see RDoc::CodeObject#parent...

REXML::Node#index_in_parent -> Insteger (6202.0)

self の親における index を返します。

...self の親における index を返します。

返される index は 1-origin です。

ノードが親を持たない(REXML::Child でない)場合は例外を発生させます。...

絞り込み条件を変える

Object#singleton_methods(inherited_too = true) -> [Symbol] (6149.0)

そのオブジェクトに対して定義されている特異メソッド名 (public あるいは protected メソッド) の一覧を返します。

...す。

singleton_methods(false) は、Object#methods(false) と同じです。

@param inherited_too 継承した特異メソッドを含める場合は真を、
そうでない場合は偽を指定します。

//emlist[例1][ruby]{
Parent
= Class.new

class <<Parent
private...
...; def private_class_parent() end
protected; def protected_class_parent() end
public; def public_class_parent() end
end

Foo = Class.new(Parent)

class <<Foo
private; def private_class_foo() end
protected; def protected_class_foo() end
public; def public_class_foo() end
end

modul...
...nd
public; def public_self() end
end

# あるオブジェクトの特異メソッドの一覧を得る。
p obj.singleton_methods(false)
p obj.methods(false)
p Foo.singleton_methods(false)

#実行結果

[:protected_self, :public_self]
[:protected_self, :public_self]
[:protected_class_foo,...

REXML::Parent#size -> Integer (6101.0)

保持している子ノードの数を返します。

保持している子ノードの数を返します。

REXML::Parent#[]=(range, node) (3101.0)

子ノード列上の指定した場所を node で置き換えます。

...de で置き換えます。

Array#[]= と同じ指定が可能です。

@param index 変更場所の index (Integer)
@param range 変更場所の範囲 (Range)
@param start 変更範囲の最初の位置 (Integer)
@param length 変更範囲の個数 (Integer)
@param node 置き換えるノード...

REXML::Parent#[]=(start, length, node) (3101.0)

子ノード列上の指定した場所を node で置き換えます。

...de で置き換えます。

Array#[]= と同じ指定が可能です。

@param index 変更場所の index (Integer)
@param range 変更場所の範囲 (Range)
@param start 変更範囲の最初の位置 (Integer)
@param length 変更範囲の個数 (Integer)
@param node 置き換えるノード...
<< 1 2 > >>