466件ヒット
[1-100件を表示]
(0.088秒)
ライブラリ
- ビルトイン (153)
-
cgi
/ html (48) - csv (60)
- logger (1)
- matrix (60)
- rss (96)
-
webrick
/ httpservlet / filehandler (24) -
webrick
/ server (12) - zlib (12)
クラス
- Array (45)
- CSV (12)
-
CSV
:: Row (24) -
CSV
:: Table (24) -
Encoding
:: Converter (24) - Hash (24)
-
Logger
:: Application (1) - Method (12)
-
RSS
:: ImageFaviconModel :: ImageFavicon (48) -
RSS
:: RDF :: Channel :: ImageFavicon (48) - Range (24)
-
RubyVM
:: InstructionSequence (12) - String (12)
- Vector (60)
-
WEBrick
:: GenericServer (12) -
WEBrick
:: HTTPServlet :: DefaultFileHandler (24) -
Zlib
:: ZStream (12)
モジュール
-
CGI
:: HtmlExtension (48)
キーワード
- + (12)
- - (12)
- arity (12)
-
avail
_ out= (12) - bsearch (48)
- each2 (24)
-
field
_ size _ limit (12) -
image
_ size (24) -
image
_ size= (24) - length (36)
-
make
_ partial _ content (12) - pack (21)
-
password
_ field (12) -
prepare
_ range (12) -
primitive
_ convert (24) -
scrolling
_ list (12) -
set
_ log (1) - size= (24)
-
text
_ field (12) -
to
_ a (12) - tokens (12)
- unpack (12)
検索結果
先頭5件
-
RSS
:: ImageFaviconModel :: ImageFavicon # size (24105.0) -
@todo
@todo -
RSS
:: RDF :: Channel :: ImageFavicon # size (21105.0) -
@todo
@todo -
Vector
# size -> Integer (21102.0) -
ベクトルの要素数(次元)を返します。
ベクトルの要素数(次元)を返します。 -
CSV
:: Row # size -> Integer (18124.0) -
Array#length, Array#size に委譲します。
...Array#length, Array#size に委譲します。
@see Array#size... -
CSV
:: Table # size -> Integer (18120.0) -
(ヘッダを除く)行数を返します。
...(ヘッダを除く)行数を返します。
Array#length, Array#size に委譲しています。
//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table = csv.read
p table.size # => 1
//}
@see Array#length, Array#size... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize) -> Symbol (15301.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize 変......=> true # stop conversion after output before input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
*......Converter.new("UTF-8", "EUC-JP")
src = "abc\x81あいう\u{20bb7}\xe3"
dst = ''
begin
ret = ec.primitive_convert(src, dst)
p [ret, src, dst, ec.primitive_errinfo]
case ret
when :invalid_byte_sequence
ec.insert_output(ec.primitive_errinfo[3].dump[1..-2])
redo
when :undefined_conver... -
Encoding
:: Converter # primitive _ convert(source _ buffer , destination _ buffer , destination _ byteoffset , destination _ bytesize , options) -> Symbol (15301.0) -
エンコーディング変換のためのメソッドの中で、もっとも細かな扱いが可能なメソッドです。
...::Converter#primitive_convert が唯一の方法になります。
@param source_buffer 変換元文字列のバッファ
@param destination_buffer 変換先文字列を格納するバッファ
@param destination_byteoffset 変換先バッファでのオフセット
@param destination_bytesize 変......=> true # stop conversion after output before input
: integer form
Encoding::Converter::PARTIAL_INPUT
Encoding::Converter::AFTER_OUTPUT
戻り値は以下のうちのどれかです。
* :invalid_byte_sequence
* :incomplete_input
* :undefined_conversion
* :after_output
*......Converter.new("UTF-8", "EUC-JP")
src = "abc\x81あいう\u{20bb7}\xe3"
dst = ''
begin
ret = ec.primitive_convert(src, dst)
p [ret, src, dst, ec.primitive_errinfo]
case ret
when :invalid_byte_sequence
ec.insert_output(ec.primitive_errinfo[3].dump[1..-2])
redo
when :undefined_conver... -
Hash
# size -> Integer (15120.0) -
ハッシュの要素の数を返します。
...ハッシュの要素の数を返します。
//emlist[][ruby]{
h = { "d" => 100, "a" => 200, "v" => 300, "e" => 400 }
h.length #=> 4
h.size #=> 4
h.delete("a") #=> 200
h.length #=> 3
h.size #=> 3
//}... -
RSS
:: ImageFaviconModel :: ImageFavicon # image _ size (12105.0) -
@todo
@todo