295件ヒット
[1-100件を表示]
(0.015秒)
ライブラリ
- ビルトイン (94)
- csv (24)
- etc (48)
- fiddle (12)
- logger (13)
- objspace (12)
-
rbconfig
/ sizeof (12) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12) - thread (4)
-
win32
/ registry (12)
クラス
- CSV (24)
- Hash (24)
- Logger (12)
-
Logger
:: Application (1) - Method (12)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) -
Thread
:: SizedQueue (24) - UnboundMethod (12)
モジュール
- Etc (48)
- Fiddle (12)
-
GC
:: Profiler (12) - ObjectSpace (12)
- RbConfig (12)
-
Win32
:: Registry :: API (12)
オブジェクト
- ENV (14)
キーワード
-
DEFAULT
_ OPTIONS (12) - FlushKey (12)
- Rubyの起動 (4)
-
SC
_ SHARED _ MEMORY _ OBJECTS (12) -
SC
_ SHELL (12) -
SC
_ THREAD _ PROCESS _ SHARED (12) -
SC
_ XOPEN _ SHM (12) - SIZEOF (12)
-
SIZEOF
_ SHORT (12) -
count
_ objects _ size (12) - hash (24)
- length (12)
- new (24)
- push (12)
-
raw
_ data (12) -
set
_ log (1) - shift (12)
- size? (18)
-
st
_ init _ table _ with _ size (12) -
to
_ h (14) - 制御構造 (12)
検索結果
先頭5件
-
Shell
# size(file) -> Integer (21114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
Shell
:: CommandProcessor # size(file) -> Integer (21114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
Shell
:: Filter # size(file) -> Integer (21114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
Hash
# size -> Integer (18113.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
//}... -
Fiddle
:: SIZEOF _ SHORT -> Integer (12200.0) -
Cでの sizeof(short) の値
...Cでの sizeof(short) の値... -
Shell
# size?(file) -> Integer | nil (9114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
Shell
:: CommandProcessor # size?(file) -> Integer | nil (9114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
Shell
:: Filter # size?(file) -> Integer | nil (9114.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#size FileTest.#size?... -
st
_ table * st _ init _ table _ with _ size(struct st _ hash _ type *type , int size) (6316.0) -
st_table を作成する。_with_size はサイズを指定して生成する。 struct st_hash_type はハッシュ値を得る関数と、同値判定を行う 関数を持つ。
...st_table を作成する。_with_size はサイズを指定して生成する。
struct st_hash_type はハッシュ値を得る関数と、同値判定を行う
関数を持つ。... -
ObjectSpace
. # count _ objects _ size(result _ hash = nil) -> Hash (6307.0) -
型ごとのオブジェクトサイズをバイト単位で格納したハッシュを返します。
...イト単位で格納したハッシュを返します。
@param result_hash 戻り値のためのハッシュを指定します。省略した場合は新
しくハッシュを作成します。result_hash の内容は上書き
されます。プローブ効......計値は正しくないでしょう。
//emlist[例][ruby]{
ObjectSpace.count_objects_size
# => {:TOTAL=>1461154, :T_CLASS=>158280, :T_MODULE=>20672, :T_STRING=>527249, ...}
//}
@raise TypeError result_hash にハッシュ以外を指定した時に発生します。
戻り値のハッシュは... -
RbConfig
:: SIZEOF -> Hash (6200.0) -
Ruby インタプリタが作成された環境における、C の型のサイズ情報を保持します。
...環境における、C の型のサイズ情報を保持します。
下の例では、実行している Ruby インタプリタは int が 4 バイトである環境で作成されたことを表しています。
//emlist[][ruby]{
require 'rbconfig/sizeof'
RbConfig::SIZEOF['int'] # => 4
//}... -
Method
# hash -> Integer (6106.0) -
自身のハッシュ値を返します。
...自身のハッシュ値を返します。
//emlist[例][ruby]{
a = method(:==)
b = method(:eql?)
p a.eql? b # => true
p a.hash == b.hash # => true
p [a, b].uniq.size # => 1
//}...