るりまサーチ (Ruby 2.7.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.097秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:rc[x] > クエリ:-[x] > バージョン:2.7.0[x] > クラス:Complex[x]

別のキーワード

  1. rc4 new
  2. rc2 new
  3. rc5 new
  4. context rc
  5. openssl rc2

ライブラリ

検索結果

Complex#coerce(other) -> [Complex, Complex] (18607.0)

other を Complex に変換して [変換後の other, self] の配列を返します。

...other を Complex に変換して [変換後の other, self] の配列を返します。

@raise TypeError 変換できないオブジェクトを指定した場合に発生します。

//emlist[例][ruby]{
Complex
(1).coerce(2) # => [(2+0i), (1+0i)]
//}...