Ruby 2.2.0 リファレンスマニュアル > ライブラリ一覧 > cmathライブラリ > CMathモジュール > sqrt!
sqrt!(x) -> Float
実数 x の平方根を返します。Math.#sqrt のエイリアスです。
例:
require "cmath" CMath.sqrt!(4.0) # => 2.0 CMath.sqrt!(9.0) # => 3.0
[SEE_ALSO] Math.#sqrt