56件ヒット
[1-56件を表示]
(0.022秒)
ライブラリ
- ビルトイン (31)
-
minitest
/ unit (1) -
rdoc
/ context (24)
クラス
- Array (7)
-
MiniTest
:: Unit (1) -
RDoc
:: Context (24) - UnboundMethod (24)
キーワード
- owner (12)
-
process
_ args (1) - union (7)
-
unmatched
_ alias _ lists (12) -
unmatched
_ alias _ lists= (12)
検索結果
先頭5件
-
UnboundMethod
# hash -> Integer (24114.0) -
自身のハッシュ値を返します。
...自身のハッシュ値を返します。
//emlist[例][ruby]{
a = method(:==).unbind
b = method(:eql?).unbind
p a.eql? b # => true
p a.hash == b.hash # => true
p [a, b].uniq.size # => 1
//}... -
RDoc
:: Context # unmatched _ alias _ lists=(val) (6123.0) -
メソッド名の対応が取れていない alias の旧メソッド名がキー、 RDoc::Alias が値の Hash を設定します。
...メソッド名の対応が取れていない alias の旧メソッド名がキー、
RDoc::Alias が値の Hash を設定します。
@param val 旧メソッド名がキー、RDoc::Alias が値の Hash を指
定します。... -
RDoc
:: Context # unmatched _ alias _ lists -> {String => RDoc :: Alias} (6117.0) -
メソッド名の対応が取れていない alias の旧メソッド名がキー、 RDoc::Alias が値の Hash を返します。
...メソッド名の対応が取れていない alias の旧メソッド名がキー、
RDoc::Alias が値の Hash を返します。... -
Array
# union(*other _ arrays) -> Array (6107.0) -
集合の和演算です。self と other_arrays の配列にどれかに含まれる要素を 全て含む新しい配列を返します。重複する要素は取り除かれます。
...ct#eql? と Object#hash により行われます。
@param other_arrays 0個以上の配列を指定します。
//emlist[例][ruby]{
["a", "b", "c"].union([ "c", "d", "a" ]) #=> ["a", "b", "c", "d"]
["a"].union(["e", "b"], ["a", "c", "b"]) #=> ["a", "e", "b", "c"]
["a"].union # => ["a"]
//}... -
UnboundMethod
# owner -> Class | Module (6007.0) -
このメソッドが定義されている class か module を返します。
...このメソッドが定義されている class か module を返します。
//emlist[例][ruby]{
Integer.instance_method(:to_s).owner # => Integer
Integer.instance_method(:to_c).owner # => Numeric
Integer.instance_method(:hash).owner # => Kernel
//}... -
MiniTest
:: Unit # process _ args(args = []) -> Hash (3102.0) -
optparse を使ってコマンドライン引数を解析した結果を返します。
optparse を使ってコマンドライン引数を解析した結果を返します。
@param args コマンドライン引数を指定します。
@see optparse