pub trait Reinterpret {
// Provided methods
fn reinterpret_signed(&self) -> Series { ... }
fn reinterpret_unsigned(&self) -> Series { ... }
}
Available on crate feature
reinterpret
only.Provided Methods§
fn reinterpret_signed(&self) -> Series
fn reinterpret_unsigned(&self) -> Series
Implementors§
impl Reinterpret for ChunkedArray<Float32Type>
impl Reinterpret for ChunkedArray<Float64Type>
impl Reinterpret for ChunkedArray<Int8Type>
Available on crate features
dtype-i8
and dtype-u8
only.impl Reinterpret for ChunkedArray<Int16Type>
Available on crate features
dtype-i16
and dtype-u16
only.impl Reinterpret for ChunkedArray<Int32Type>
impl Reinterpret for ChunkedArray<Int64Type>
impl Reinterpret for ChunkedArray<ListType>
impl Reinterpret for ChunkedArray<UInt8Type>
Available on crate features
dtype-u8
and dtype-i8
only.impl Reinterpret for ChunkedArray<UInt16Type>
Available on crate features
dtype-u16
and dtype-i16
only.