pub trait Double {
    type Output;

    fn double(&self) -> Self::Output;
}
Expand description

Unary operator for retrieving the doubled value.

Required Associated Types

Required Methods

Implementations on Foreign Types

Returns the double of self.

Returns the double of self.

Returns the double of self.

Implementors