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

Function test_bool_array_not

arrow-arith/src/boolean.rs:597–604  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

595
596 #[test]
597 fn test_bool_array_not() {
598 let a = BooleanArray::from(vec![false, true]);
599 let c = not(&a).unwrap();
600
601 let expected = BooleanArray::from(vec![true, false]);
602
603 assert_eq!(c, expected);
604 }
605
606 #[test]
607 fn test_bool_array_not_sliced() {

Callers

nothing calls this directly

Calls 1

notFunction · 0.85

Tested by

no test coverage detected