343件ヒット
[1-100件を表示]
(0.016秒)
別のキーワード
種類
- モジュール関数 (151)
- インスタンスメソッド (132)
- 定数 (48)
- 関数 (12)
ライブラリ
- ビルトイン (84)
- csv (12)
- fileutils (151)
-
win32
/ registry (48)
クラス
- CSV (12)
-
Encoding
:: Converter (60) -
Enumerator
:: Lazy (12) -
RDoc
:: Options (36) - String (12)
モジュール
- FileUtils (151)
-
Win32
:: Registry :: Constants (48)
キーワード
-
REG
_ FORCE _ RESTORE (12) -
REG
_ NO _ LAZY _ FLUSH (12) -
REG
_ REFRESH _ HIVE (12) -
REG
_ WHOLE _ HIVE _ VOLATILE (12) - convert (12)
-
cp
_ lr (7) -
cp
_ r (12) -
force
_ encoding (12) -
force
_ output (12) -
force
_ output= (12) -
force
_ quotes? (12) -
force
_ update (12) - link (12)
- ln (12)
-
ln
_ s (12) -
ln
_ sf (12) - move (12)
- mv (12)
-
primitive
_ convert (48) -
rb
_ gc _ force _ recycle (12) -
remove
_ dir (12) -
remove
_ entry (12) -
remove
_ entry _ secure (12) -
remove
_ file (12) - symlink (12)
検索結果
先頭5件
-
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