667件ヒット
[1-100件を表示]
(0.128秒)
別のキーワード
ライブラリ
- ビルトイン (303)
-
fiddle
/ import (12) - matrix (24)
- mkmf (48)
-
net
/ ftp (136) -
net
/ http (24) -
net
/ imap (36) - rake (12)
-
rinda
/ tuplespace (12) -
rubygems
/ source _ info _ cache _ entry (12) - strscan (24)
- zlib (24)
クラス
- Array (105)
-
Encoding
:: Converter (24) - Enumerator (12)
-
Enumerator
:: Chain (7) -
Gem
:: SourceInfoCacheEntry (12) - Method (12)
-
Net
:: FTP (116) -
Net
:: FTP :: MLSxEntry (20) -
Net
:: HTTPGenericRequest (24) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) - Random (12)
- Range (36)
-
Rinda
:: TupleEntry (12) -
RubyVM
:: InstructionSequence (12) - String (27)
- StringScanner (24)
- Symbol (24)
-
Thread
:: SizedQueue (8) - UnboundMethod (24)
- Vector (24)
-
Zlib
:: Deflate (12) -
Zlib
:: Inflate (12)
モジュール
-
Fiddle
:: Importer (12) - Kernel (48)
-
Rake
:: TaskManager (12)
キーワード
- arity (24)
- bind (12)
-
body
_ stream (12) -
body
_ stream= (12) - bsearch (48)
- byterindex (3)
- bytes (12)
- bytesize (12)
-
check
_ signedness (24) -
check
_ sizeof (24) - each2 (24)
-
each
_ index (24) - empty? (8)
- facts (10)
- getbinaryfile (24)
- length (24)
- mlsd (20)
- name (12)
- pack (21)
- peek (12)
- peep (12)
-
primitive
_ convert (24) - putbinaryfile (24)
- retrbinary (24)
-
set
_ dictionary (24) - storbinary (24)
-
synthesize
_ file _ task (12) -
to
_ a (12) - transpose (12)
- unpack (12)
検索結果
先頭5件
-
Gem
:: SourceInfoCacheEntry # size -> Integer (21102.0) -
ソースエントリのサイズです。
ソースエントリのサイズです。
ソースインデックスが変化したことを検出するために使用します。 -
Net
:: FTP :: MLSxEntry # size -> Integer|nil (21102.0) -
エントリのサイズを返します。
エントリのサイズを返します。
サイズ情報がない、もしくはサイズが意味をもたない(ディレクトリの場合など)
は nil を返します。 -
Net
:: IMAP :: BodyTypeBasic # size -> Integer (21102.0) -
ボディのサイズのオクテット数を返します。
ボディのサイズのオクテット数を返します。 -
Net
:: IMAP :: BodyTypeMessage # size -> Integer (21102.0) -
ボディのサイズのオクテット数を返します。
ボディのサイズのオクテット数を返します。 -
Net
:: IMAP :: BodyTypeText # size -> Integer (21102.0) -
ボディのサイズのオクテット数を返します。
ボディのサイズのオクテット数を返します。 -
Rinda
:: TupleEntry # size -> Integer (21102.0) -
タプルのサイズ(配列の要素数/ハッシュテーブルのエントリー数)を返します
...タプルのサイズ(配列の要素数/ハッシュテーブルのエントリー数)を返します
@see Rinda::TupleEntry#value... -
Enumerator
# size -> Integer | Float :: INFINITY | nil (18220.0) -
self の要素数を返します。
...NITY を返します。
Enumerator.new に Proc オブジェクトを指定していた場合はその
実行結果を返します。呼び出した時に要素数が不明であった場合は nil を返し
ます。
//emlist[例][ruby]{
(1..100).to_a.permutation(4).size # => 94109400
loop.size #......=> Float::INFINITY
(1..100).drop_while.size # => nil
//}
@see Enumerator.new... -
Range
# size -> Integer | Float :: INFINITY | nil (18220.0) -
範囲内の要素数を返します。始端、終端のいずれかのオブジェクトが Numeric のサブクラスのオブジェクトではない場合には nil を返します。
...を返します。始端、終端のいずれかのオブジェクトが
Numeric のサブクラスのオブジェクトではない場合には nil を返します。
//emlist[例][ruby]{
(10..20).size # => 11
("a".."z").size # => nil
(-Float::INFINITY..Float::INFINITY).size # => Infinity
//}... -
Enumerator
:: Chain # size -> Integer | Float :: INFINITY | nil (18202.0) -
合計の要素数を返します。
...合計の要素数を返します。
それぞれの列挙可能なオブジェクトのサイズの合計値を返します。
ただし、列挙可能なオブジェクトが1つでも nil か Float::INFINITY
を返した場合、それを合計の要素数として返します。...