るりまサーチ

最速Rubyリファレンスマニュアル検索!
227件ヒット [201-227件を表示] (0.016秒)
トップページ > クエリ:ref[x] > クエリ:prefix[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. fiddle ref
  2. pointer ref
  3. entity ref
  4. _builtin _id2ref
  5. rexml/document ref

検索結果

<< < 1 2 3 >>

Kernel#create_makefile(target, srcprefix = nil) -> true (201.0)

@todo

...ラリを Ruby スクリプトから使用するときは
"require 'test/foo'" とする必要があります。

@param srcprefix ソースコードがあるディレクトリ名を指定します。
省略した場合は extconf.rb があるディレクト...

Kernel#install_files(mfile, ifiles, map = nil, srcprefix = nil) -> [] (201.0)

このメソッドは create_makefile, install_rb が使用します。 内部用のメソッドです。

...ll_rb が使用します。
内部用のメソッドです。

@param mfile Makefile を表す File のインスタンスです。

@param ifiles インストールするファイルのリストを指定します。

@param map ???

@param srcprefix ソースディレクトリを指定します。...

Symbol#start_with?(*prefixes) -> bool (201.0)

self の先頭が prefixes のいずれかであるとき true を返します。

...self の先頭が prefixes のいずれかであるとき true を返します。

(self.to_s.start_with?と同じです。)

@param prefixes パターンを表す文字列または正規表現 (のリスト)

@see Symbol#end_with?

@see String#start_with?

//emlist[][ruby]{
:hello.start_with?("hel...
...l") #=> true
:hello.start_with?(/H/i) #=> true

# returns true if one of the prefixes matches.
:hello.start_with?("heaven", "hell") #=> true
:hello.start_with?("heaven", "paradise") #=> false
//}...
<< < 1 2 3 >>