Function polars_arrow::bitmap::select_constant
source ยท pub fn select_constant(
selector: &Bitmap,
truthy: &Bitmap,
falsy: bool,
) -> Bitmap
Expand description
Compute out[i] = if selector[i] { truthy[i] } else { falsy }
.