trait ZipImpl:
    Debug
    + Send
    + Sync {
    // Required method
    fn create_output(
        &self,
        input: &BooleanArray,
    ) -> Result<ArrayRef, ArrowError>;
}Expand description
Impl for creating output array based on a mask
Required Methods§
Sourcefn create_output(&self, input: &BooleanArray) -> Result<ArrayRef, ArrowError>
 
fn create_output(&self, input: &BooleanArray) -> Result<ArrayRef, ArrowError>
Creating output array based on input boolean array