るりまサーチ

最速Rubyリファレンスマニュアル検索!
343件ヒット [1-100件を表示] (0.016秒)
トップページ > クエリ:rc[x] > クエリ:force[x]

別のキーワード

  1. rc2 new
  2. rc4 new
  3. rc5 new
  4. context rc?
  5. openssl rc4

検索結果

<< 1 2 3 ... > >>

Enumerator::Lazy#force(*args) -> [object] (24207.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 (12233.0)

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

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

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

CSV#force_quotes? -> bool (12225.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 (12225.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) (12223.0)

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

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

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

絞り込み条件を変える

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

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

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

Win32::Registry::Constants::REG_FORCE_RESTORE (12201.0)

@todo

@todo

void rb_gc_force_recycle(VALUE p) (12200.0)

p を強制的に GC します。

p を強制的に GC します。

Win32::Registry::Constants::REG_NO_LAZY_FLUSH (6001.0)

@todo

@todo
<< 1 2 3 ... > >>