Trait polars_core::chunked_array::ops::ChunkCast [−][src]
pub trait ChunkCast {
fn cast<N>(&self) -> Result<ChunkedArray<N>>
where
N: PolarsDataType;
fn cast_with_dtype(&self, data_type: &DataType) -> Result<Series>;
}Expand description
Cast ChunkedArray<T> to ChunkedArray<N>
Required methods
fn cast<N>(&self) -> Result<ChunkedArray<N>> where
N: PolarsDataType,
fn cast<N>(&self) -> Result<ChunkedArray<N>> where
N: PolarsDataType, Cast ChunkedArray<T> to ChunkedArray<N>
fn cast_with_dtype(&self, data_type: &DataType) -> Result<Series>