pub trait Pow {
    fn pow_f32(&self, _exp: f32) -> Float32Chunked { ... }
    fn pow_f64(&self, _exp: f64) -> Float64Chunked { ... }
}

Provided Methods

Implementors