515件ヒット
[1-100件を表示]
(0.128秒)
ライブラリ
クラス
- Array (36)
- BasicObject (24)
- CSV (24)
-
CSV
:: Table (60) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (24) - Matrix (48)
- Method (12)
-
MiniTest
:: Unit (3) -
Net
:: FTP (12) -
Net
:: POP3 (36) - Proc (7)
-
Rake
:: FileList (12) -
Resolv
:: DNS (12) -
Scanf
:: FormatSpecifier (6) -
Scanf
:: FormatString (18) - String (12)
- Thread (24)
- UnboundMethod (12)
モジュール
- Enumerable (60)
- GC (12)
-
MiniTest
:: Assertions (1) -
Net
:: HTTPHeader (24) - Observable (12)
キーワード
- ! (12)
- != (12)
- << (7)
-
_ assertions= (1) - acct (12)
- arity (24)
-
assertion
_ count (1) -
assertion
_ count= (1) -
auth
_ only (12) -
basic
_ auth (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) -
count
_ space? (6) - egrep (12)
- failures= (1)
-
garbage
_ collect (12) - inspect (12)
-
matched
_ count (6) - priority (12)
- priority= (12)
-
proxy
_ basic _ auth (12) - prune (6)
- read (12)
- readlines (12)
-
row
_ count (12) -
row
_ size (12) -
sort
_ by (24) -
spec
_ count (6) - start (24)
- timeouts= (12)
- updated (12)
検索結果
先頭5件
-
Array
# count -> Integer (21128.0) -
レシーバの要素数を返します。
...ブロックを評価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
ary = [1, 2, 4, 2.0]
ary.count # => 4
ary.count(2) # => 2
ary.count{|x|x%2==0} # => 3
//}
@see Enumerable#count... -
Array
# count {|obj| . . . } -> Integer (21128.0) -
レシーバの要素数を返します。
...ブロックを評価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
ary = [1, 2, 4, 2.0]
ary.count # => 4
ary.count(2) # => 2
ary.count{|x|x%2==0} # => 3
//}
@see Enumerable#count... -
Array
# count(item) -> Integer (21128.0) -
レシーバの要素数を返します。
...ブロックを評価して真になった要素の個数を
カウントして返します。
@param item カウント対象となる値。
//emlist[例][ruby]{
ary = [1, 2, 4, 2.0]
ary.count # => 4
ary.count(2) # => 2
ary.count{|x|x%2==0} # => 3
//}
@see Enumerable#count... -
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 :: SilentProgressReporter # count -> nil (21102.0) -
何もしません。
何もしません。 -
Gem
:: StreamUI :: SimpleProgressReporter # count -> Integer (21102.0) -
Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。
...Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。... -
Gem
:: StreamUI :: VerboseProgressReporter # count -> Integer (21102.0) -
Gem::StreamUI::VerboseProgressReporter#updated が呼び出された回数を返します。
...Gem::StreamUI::VerboseProgressReporter#updated が呼び出された回数を返します。...