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

Function test_bitwise_unary_empty

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

Source from the content-addressed store, hash-verified

1505
1506 #[test]
1507 fn test_bitwise_unary_empty() {
1508 let arr = BooleanArray::from(Vec::<bool>::new());
1509 let result = arr.bitwise_unary(|x| !x);
1510 assert_eq!(result.len(), 0);
1511 }
1512
1513 #[test]
1514 fn test_bitwise_bin_op_empty() {

Callers

nothing calls this directly

Calls 1

bitwise_unaryMethod · 0.80

Tested by

no test coverage detected