pub trait FillNullFn<A> {
// Required method
fn fill_null(&self, array: A, fill_value: Scalar) -> VortexResult<ArrayRef>;
}
Expand description
Implementation of fill_null for an encoding.
SAFETY: the fill value is guaranteed to be non-null.
pub trait FillNullFn<A> {
// Required method
fn fill_null(&self, array: A, fill_value: Scalar) -> VortexResult<ArrayRef>;
}
Implementation of fill_null for an encoding.
SAFETY: the fill value is guaranteed to be non-null.