pub trait Sqrt {
    type Output;
    fn sqrt(self) -> Self::Output;
}
Expand description

A type which can be square rooted.

This is implemented by f32 and f64 by value and by reference, as well as Traces and Records of these.

Associated Types

Required methods

Implementations on Foreign Types

Implementors

Square root of a Record by reference.

Operation for a record by value.

Square root of a Trace by reference.

Operation for a trace by value.