るりまサーチ

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

別のキーワード

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

ライブラリ

クラス

モジュール

キーワード

検索結果

<< < 1 2 3 >>

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...
<< < 1 2 3 >>