るりまサーチ

最速Rubyリファレンスマニュアル検索!
1051件ヒット [1-100件を表示] (0.026秒)

別のキーワード

  1. csv force_quotes?
  2. lazy force
  3. _builtin force
  4. options force_output
  5. options force_update

検索結果

<< 1 2 3 ... > >>

Enumerator::Lazy#force(*args) -> [object] (18107.0)

全ての要素を含む配列を返します。Lazy から実際に値を取り出すのに使います。

...要素を含む配列を返します。Lazy から実際に値を取り出すのに使います。

Enumerable#to_a のエイリアスです。

//emlist[例][ruby]{
1.step.lazy.take(10).force
# => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

1.step.lazy.take(10).to_a
# => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
//}...

RDoc::Options#force_output -> bool (6133.0)

コマンドライン引数の --force_output オプションを指定していた場合、true を返します。--no-force_output オプションを指定していた場合、false を返 します。

...コマンドライン引数の --force_output オプションを指定していた場合、true
を返します。--no-force_output オプションを指定していた場合、false を返
します。

どちらも指定しなかった場合は true を返します。...

CSV#force_quotes? -> bool (6125.0)

出力される全てのフィールドがクオートされる場合は、真を返します。

...V.generate(force_quotes: false) do |csv|
rows.each { |row| csv << row }
csv.force_quotes? # => false
end
print result

# => header1,header2
# "row1_1,",row1_2
//}

//emlist[例][ruby]{
require "csv"

rows = [["header1", "header2"], ["row1_1,", "row1_2"]]
result = CSV.generate(force_quotes: tr...
...ue) do |csv|
rows.each { |row| csv << row }
csv.force_quotes? # => true
end
print result

# => true
# => "header1","header2"
# "row1_1,","row1_2"
//}

@see CSV.new...

String#force_encoding(encoding) -> self (6125.0)

文字列の持つエンコーディング情報を指定された encoding に変えます。

...#=> ASCII-8BIT
p s.force_encoding("EUC-JP") #=> "いろは"
p s.force_encoding(Encoding::EUC_JP) #=> "いろは"

u = [12411, 12408, 12392].pack("U*")
u.force_encoding("UTF-8") #=> "ほへと"
u.force_encoding(Encoding::UTF_8)...

RDoc::Options#force_output=(val) (6123.0)

val に true を指定した場合、コマンドライン引数の --force_output オプショ ンと同様の指定を行います。

...val に true を指定した場合、コマンドライン引数の --force_output オプショ
ンと同様の指定を行います。

@param val --force_output オプションと同じ指定を行う場合は true、そうで
ない場合は false を指定します。...

絞り込み条件を変える

RDoc::Options#force_update -> bool (6117.0)

コマンドライン引数の --force_update を指定していた場合に true を返しま す。そうでない場合は false を返します。

...コマンドライン引数の --force_update を指定していた場合に true を返しま
す。そうでない場合は false を返します。...

Win32::Registry::Constants::REG_FORCE_RESTORE (6101.0)

@todo

@todo

void rb_gc_force_recycle(VALUE p) (6100.0)

p を強制的に GC します。

p を強制的に GC します。

Win32::Registry::Constants::REG_NO_LAZY_FLUSH (3001.0)

@todo

@todo

Win32::Registry::Constants::REG_REFRESH_HIVE (3001.0)

@todo

@todo

絞り込み条件を変える

<< 1 2 3 ... > >>