Trait polars_core::chunked_array::ops::ChunkFillNoneValue [−][src]
pub trait ChunkFillNoneValue<T> { fn fill_none_with_value(&self, value: T) -> Result<Self>
where
Self: Sized; }
Expand description
Replace None values with a value
Required methods
fn fill_none_with_value(&self, value: T) -> Result<Self> where
Self: Sized,
fn fill_none_with_value(&self, value: T) -> Result<Self> where
Self: Sized,
Replace None values with a give value T
.
Implementors
impl<T> ChunkFillNoneValue<<T as ArrowPrimitiveType>::Native> for ChunkedArray<T> where
T: PolarsNumericType,
T::Native: Add<Output = T::Native> + PartialOrd + Div<Output = T::Native> + Num + NumCast,