るりまサーチ

最速Rubyリファレンスマニュアル検索!
1404件ヒット [501-600件を表示] (0.083秒)
トップページ > クエリ:I[x] > クエリ:table[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. kernel $-i
  5. csv to_i

モジュール

検索結果

<< < ... 4 5 6 7 8 ... > >>

CSV::Table#inspect -> String (9218.0)

モードとサイズを US-ASCII な文字列で返します。

...モードとサイズを US-ASCII な文字列で返します。

//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table
= csv.read
p table.inspect # => "#<CSV::Table mode:col_or_row row_count:2>"
//}...

Ripper::PARSER_EVENT_TABLE -> {Symbol => Integer} (9201.0)

パーサイベントのイベント ID (シンボル) と対応するハンドラの引数の個数の リストをハッシュで返します。

...パーサイベントのイベント ID (シンボル) と対応するハンドラの引数の個数の
リストをハッシュで返します。...

Ripper::SCANNER_EVENT_TABLE -> {Symbol => Integer} (9201.0)

スキャナイベントのイベント ID (シンボル) と対応するハンドラの引数の個数 のリストをハッシュで返します。

...スキャナイベントのイベント ID (シンボル) と対応するハンドラの引数の個数
のリストをハッシュで返します。...

FileTest.#executable?(file) -> bool (9200.0)

ファイルがカレントプロセスにより実行できる時に真を返しま す。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

@param file ファイル名を表す文字列を指定します。

例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true...

FileTest.#executable_real?(file) -> bool (9200.0)

ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...e を返します。

@param file ファイル名を表す文字列を指定します。

//emlist[例][ruby]{
I
O.write("empty.txt", "")
File.chmod(0744, "empty.txt")
FileTest.executable_real?("empty.txt") # => true
File.chmod(0644, "empty.txt")
FileTest.executable_real?("empty.txt") # =>...

絞り込み条件を変える

Gem::Specification#default_executable -> String | nil (9200.0)

Gem パッケージ内で gem コマンド経由で実行するファイルを返します。

Gem パッケージ内で gem コマンド経由で実行するファイルを返します。

Gem::Specification#default_executable=(executable) (9200.0)

Gem パッケージ内で gem コマンド経由で実行するファイルをセットします。

...Gem パッケージ内で gem コマンド経由で実行するファイルをセットします。

@param executable 実行ファイルを指定します。...

Gem::Specification#executable -> String (9200.0)

実行可能ファイル名を返します。

実行可能ファイル名を返します。

Gem::Specification#executable=(executable) (9200.0)

実行可能ファイル名をセットします。

...実行可能ファイル名をセットします。

@param executable 実行可能ファイル名を指定します。...
<< < ... 4 5 6 7 8 ... > >>