120件ヒット
[101-120件を表示]
(0.045秒)
別のキーワード
キーワード
- each (24)
-
each
_ with _ index (24) -
find
_ index (36)
検索結果
-
Matrix
# each(which = :all) -> Enumerator (22.0) -
行列の各要素を引数としてブロックを呼び出します。
...][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, Matrix#ma... -
Matrix
# each(which = :all) {|e| . . . } -> self (22.0) -
行列の各要素を引数としてブロックを呼び出します。
...][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, Matrix#ma...