()
| 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() { |
nothing calls this directly
no test coverage detected