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

Function test_bitwise_bin_op_or

arrow-array/src/array/boolean_array.rs:1380–1385  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1378
1379 #[test]
1380 fn test_bitwise_bin_op_or() {
1381 let a = BooleanArray::from(vec![true, false, true, false]);
1382 let b = BooleanArray::from(vec![false, true, false, false]);
1383 let result = a.bitwise_bin_op(&b, |a, b| a | b);
1384 assert_eq!(result, BooleanArray::from(vec![true, true, true, false]));
1385 }
1386
1387 #[test]
1388 fn test_bitwise_bin_op_null_union() {

Callers

nothing calls this directly

Calls 1

bitwise_bin_opMethod · 0.80

Tested by

no test coverage detected