// Copyright (c) 2016-2017 <daggerbot@gmail.com>
// This software is available under the terms of the zlib license.
// See COPYING.md for more information.
/// Get the square root of a number.
pubtraitSqrt{fnsqrt(self)->Self;}#[cfg(feature ="std")]implSqrt forf32{fnsqrt(self)->f32{self.sqrt()}}#[cfg(feature ="std")]implSqrt forf64{fnsqrt(self)->f64{self.sqrt()}}