Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Complexクラス > coerce
coerce(other) -> [Complex, Complex]
other を Complex に変換して [変換後の other, self] の配列を返します。
例 Complex(1).coerce(2) # => [(2+0i), (1+0i)]
Complex(1).coerce(2) # => [(2+0i), (1+0i)]