Trait palette::num::Sqrt

source ·
pub trait Sqrt {
    // Required method
    fn sqrt(self) -> Self;
}
Expand description

Method for getting the square root of a number.

Required Methods§

source

fn sqrt(self) -> Self

Returns the square root of self.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Sqrt for f32

source§

fn sqrt(self) -> Self

source§

impl Sqrt for f64

source§

fn sqrt(self) -> Self

source§

impl Sqrt for f32x4

source§

fn sqrt(self) -> Self

source§

impl Sqrt for f32x8

source§

fn sqrt(self) -> Self

source§

impl Sqrt for f64x2

source§

fn sqrt(self) -> Self

source§

impl Sqrt for f64x4

source§

fn sqrt(self) -> Self

Implementors§