332件ヒット
[1-100件を表示]
(0.120秒)
ライブラリ
- ビルトイン (115)
- csv (84)
- matrix (24)
-
minitest
/ unit (1) -
net
/ ftp (12) -
net
/ pop (24) - observer (12)
- rake (12)
- resolv (12)
-
rubygems
/ user _ interaction (36)
クラス
- BasicObject (24)
- CSV (24)
-
CSV
:: Table (60) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (12) - Matrix (24)
-
MiniTest
:: Unit (1) -
Net
:: FTP (12) -
Net
:: POP3 (24) - Proc (7)
-
Rake
:: FileList (12) -
Resolv
:: DNS (12) - Thread (12)
モジュール
- Enumerable (60)
- GC (12)
- Observable (12)
キーワード
- ! (12)
- != (12)
- << (7)
- acct (12)
-
auth
_ only (12) -
by
_ col _ or _ row (12) -
by
_ col _ or _ row! (12) -
by
_ row (12) -
by
_ row! (12) -
column
_ count (12) -
column
_ size (12) -
count
_ observers (12) - egrep (12)
- failures= (1)
-
garbage
_ collect (12) - inspect (12)
- priority= (12)
- read (12)
- readlines (12)
-
sort
_ by (24) - start (12)
- timeouts= (12)
- updated (12)
検索結果
先頭5件
-
Gem
:: StreamUI :: SilentProgressReporter # count -> nil (21202.0) -
何もしません。
何もしません。 -
Enumerable
# count -> Integer (21128.0) -
レシーバの要素数を返します。
...価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
enum = [1, 2, 4, 2].each
enum.count # => 4
enum.count(2) # => 2
enum.count{|x|x%2==0} # => 3
//}
@see Array#count... -
Enumerable
# count {|obj| . . . } -> Integer (21128.0) -
レシーバの要素数を返します。
...価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
enum = [1, 2, 4, 2].each
enum.count # => 4
enum.count(2) # => 2
enum.count{|x|x%2==0} # => 3
//}
@see Array#count... -
Enumerable
# count(item) -> Integer (21128.0) -
レシーバの要素数を返します。
...価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
enum = [1, 2, 4, 2].each
enum.count # => 4
enum.count(2) # => 2
enum.count{|x|x%2==0} # => 3
//}
@see Array#count... -
Gem
:: StreamUI :: SimpleProgressReporter # count -> Integer (21102.0) -
Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。
...Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。... -
Matrix
# column _ count -> Integer (12202.0) -
行列の列数を返します。
行列の列数を返します。 -
Matrix
# column _ size -> Integer (9102.0) -
行列の列数を返します。
行列の列数を返します。 -
Observable
# count _ observers -> Integer (9102.0) -
登録されているオブザーバの数を返します。
登録されているオブザーバの数を返します。 -
GC
# garbage _ collect(full _ mark: true , immediate _ sweep: true) -> nil (6213.0) -
ガーベージコレクトを開始します。
....start や ObjectSpace.#garbage_collect と同じ働きをします。
GC.disable により GC が禁止されている場合でもガベージコレクトを開始します。
nil を返します。
@param full_mark マイナー GC を動作させる場合は false を、そうでない場......合は true を指定します。
@param immediate_sweep sweep を遅らせる(Lazy Sweep を行う)場合は false
を、そうでない場合は true を指定します。
注意: これらのキーワード引数は Ruby の実装やバージョンによって......将来のバージョンとの互換性も保証されません。また、Ruby の実装がサポー
トしていない場合はキーワード引数を指定しても無視される可能性があります。
//emlist[例][ruby]{
include GC
GC.count # => 3
garbage_collect
GC.count # => 4
//}...