33件ヒット
[1-33件を表示]
(0.077秒)
クラス
-
Enumerator
:: ArithmeticSequence (21) -
Rake
:: FileList (12)
キーワード
- == (7)
-
exclude
_ end? (7) - hash (7)
検索結果
先頭4件
-
Rake
:: FileList # exclude(*patterns) {|entry| . . . } -> self (18226.0) -
自身から取り除くべきファイル名のパターンを自身の除外リストに登録します。
...例:
FileList['a.c', 'b.c'].exclude("a.c") # => ['b.c']
FileList['a.c', 'b.c'].exclude(/^a/) # => ['b.c']
# If "a.c" is a file, then ...
FileList['a.c', 'b.c'].exclude("a.*") # => ['b.c']
# If "a.c" is not a file, then ...
FileList['a.c', 'b.c'].exclude("a.*") # => ['a.c', 'b.c']... -
Enumerator
:: ArithmeticSequence # exclude _ end? -> bool (9102.0) -
末項(終端)を含まないとき真を返します。
末項(終端)を含まないとき真を返します。 -
Enumerator
:: ArithmeticSequence # ==(other) -> bool (3007.0) -
Enumerable::ArithmeticSequence として等しいか判定します。
...Enumerable::ArithmeticSequence として等しいか判定します。
other が Enumerable::ArithmeticSequence で
begin, end, step, exclude_end? が等しい時に
true を返します。
@param other 自身と比較する Enumerable::ArithmeticSequence... -
Enumerator
:: ArithmeticSequence # hash -> Integer (3007.0) -
自身のハッシュ値を返します。
...自身のハッシュ値を返します。
begin, end, step, exclude_end? が等しい Enumerable::ArithmeticSequence は
同じハッシュ値を返します。...