MCPcopy Create free account
hub / github.com/apache/arrow-rs / bitor_assign

Method bitor_assign

arrow-buffer/src/buffer/boolean.rs:762–764  ·  view source on GitHub ↗
(&mut self, rhs: &BooleanBuffer)

Source from the content-addressed store, hash-verified

760
761impl BitOrAssign<&BooleanBuffer> for BooleanBuffer {
762 fn bitor_assign(&mut self, rhs: &BooleanBuffer) {
763 self.bitwise_bin_op_assign(rhs, |a, b| a | b);
764 }
765}
766
767impl BitXorAssign<&BooleanBuffer> for BooleanBuffer {

Callers

nothing calls this directly

Calls 1

bitwise_bin_op_assignMethod · 0.80

Tested by

no test coverage detected