るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.059秒)
トップページ > クエリ:String#tr[x] > クエリ:each_codepoint[x] > クエリ:rjust[x] > クエリ:DEPRECATED[x] > クラス:LoadError[x]

別のキーワード

  1. _builtin each
  2. _builtin each_line
  3. prime each
  4. each
  5. tsort each_strongly_connected_component

ライブラリ

検索結果

LoadError#path -> String | nil (202.0)

Kernel.#require や Kernel.#load に失敗したパスを返します。

...Kernel.#require や Kernel.#load に失敗したパスを返します。

begin
require 'this/file/does/not/exist'
rescue LoadError => e
e.path # => 'this/file/does/not/exist'
end

パスが定まらない場合は nil を返します。...