るりまサーチ

最速Rubyリファレンスマニュアル検索!
205件ヒット [201-205件を表示] (0.350秒)

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < 1 2 3 >>

Matrix#each(which = :all) {|e| ... } -> self (13.0)

行列の各要素を引数としてブロックを呼び出します。

...uby]{
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#map...
<< < 1 2 3 >>