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

Function test_bitwise_bin_op_empty

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

Source from the content-addressed store, hash-verified

1512
1513 #[test]
1514 fn test_bitwise_bin_op_empty() {
1515 let a = BooleanArray::from(Vec::<bool>::new());
1516 let b = BooleanArray::from(Vec::<bool>::new());
1517 let result = a.bitwise_bin_op(&b, |a, b| a & b);
1518 assert_eq!(result.len(), 0);
1519 }
1520
1521 #[test]
1522 fn test_bitwise_unary_sliced() {

Callers

nothing calls this directly

Calls 1

bitwise_bin_opMethod · 0.80

Tested by

no test coverage detected