201件ヒット
[201-201件を表示]
(0.515秒)
クラス
- Hash (62)
- Matrix (48)
-
Prime
:: PseudoPrimeGenerator (48)
モジュール
- Enumerable (43)
検索結果
-
Matrix
# each(which = :all) -> Enumerator (14.0) -
行列の各要素を引数としてブロックを呼び出します。
...t[例][ruby]{
require 'matrix'
Matrix[ [1,2], [3,4] ].each { |e| puts e }
# => prints the numbers 1 to 4
Matrix[ [1,2], [3,4] ].each(:strict_lower).to_a # => [3]
//}
@param which どの要素に対してブロックを呼び出すのかを Symbol で指定します
@see Matrix#each_with_index, Matr...