るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.231秒)
トップページ > クエリ:-[x] > クエリ:E[x] > クエリ:tr[x] > クエリ:l[x] > クエリ:exclude[x]

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

ライブラリ

クラス

検索結果

Rake::FileList#exclude(*patterns) {|entry| ... } -> self (30525.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',...