るりまサーチ

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

別のキーワード

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

ライブラリ

キーワード

検索結果

<< 1 2 3 ... > >>

CSV#internal_encoding -> Encoding | nil (12308.0)

IO#internal_encoding に委譲します。

...
I
O#internal_encoding に委譲します。


@
see IO#internal_encoding...

CSV#string -> String (6208.0)

StringIO#string に委譲します。

...StringIO#string に委譲します。


@
see StringIO#string...

CSV#binmode -> self (6108.0)

IO#binmode に委譲します。

...
I
O#binmode に委譲します。


@
see IO#binmode...

CSV#binmode? -> bool (6108.0)

IO#binmode? に委譲します。

...
I
O#binmode? に委譲します。


@
see IO#binmode?...

CSV#close_write -> nil (6108.0)

IO#close_write に委譲します。

...
I
O#close_write に委譲します。


@
see IO#close_write...

絞り込み条件を変える

CSV#field_size_limit -> Integer (6108.0)

フィールドサイズの最大値を返します。

...

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

csv
= CSV.new(DATA)
csv
.field_size_limit # => nil
p csv.read # => [["a", "b"], ["\n2\n2\n", ""]]

DATA.rewind
csv
= CSV.new(DATA, field_size_limit: 4)
p csv.field_size_limit # => 4
csv
.read # => #<CSV::MalformedCSVError: Field size exceeded on line 2.>

__END...
...__
"a","b"
"
2
2
",""
//}

@
see CSV.new...

CSV#ioctl(cmd, arg = 0) -> Integer (6108.0)

IO#ioctl に委譲します。

...
I
O#ioctl に委譲します。


@
see IO#ioctl...

CSV#isatty -> bool (6108.0)

IO#isatty, IO#tty? に委譲します。

...
I
O#isatty, IO#tty? に委譲します。


@
see IO#isatty, IO#tty?...

CSV#pid -> Integer | nil (6108.0)

IO#pid に委譲します。

...
I
O#pid に委譲します。


@
see IO#pid...
<< 1 2 3 ... > >>