self ** other -> Complex[permalink][rdoc][edit](Numeric) → Complex-
selfのother乗を返します。Complexオブジェクトを左項とする算術演算子**はこのメソッドの呼び出しになります。- [PARAM]
other: -
selfに対する冪指数(べきしすう)
p 1i ** 2 # => (-1+0i) - [PARAM]
self ** other -> Complex[permalink][rdoc][edit](Numeric) → Complex
self の other 乗を返します。
Complex オブジェクトを左項とする算術演算子 ** はこのメソッドの呼び出しになります。
other:self に対する冪指数(べきしすう)
p 1i ** 2 # => (-1+0i)