Function arrow::compute::kernels::boolean::nullif[][src]

pub fn nullif<T>(
    left: &PrimitiveArray<T>,
    right: &BooleanArray
) -> Result<PrimitiveArray<T>> where
    T: ArrowNumericType
Expand description

Copies original array, setting null bit to true if a secondary comparison boolean array is set to true. Typically used to implement NULLIF.