pub trait SqrtAssign {
    fn sqrt_assign(&mut self);
}
Expand description

Replaces a number with its square root.

Required Methods

Implementations on Foreign Types

Replaces a number with its square root.

$x \gets \sqrt x$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

Replaces a number with its square root.

$x \gets \sqrt x$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

Implementors