Trait polars::chunked_array::object::ChunkFillNoneValue[][src]

pub trait ChunkFillNoneValue<T> {
    fn fill_none_with_value(&self, value: T) -> Result<Self, PolarsError>;
}
Expand description

Replace None values with a value

Required methods

Replace None values with a give value T.

Implementors