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

Function bit_length_null_cases

arrow-string/src/length.rs:640–646  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

638 }
639
640 fn bit_length_null_cases() -> Vec<(Vec<OptionStr>, usize, Vec<Option<i32>>)> {
641 vec![(
642 vec![Some("one"), None, Some("three"), Some("four")],
643 4,
644 vec![Some(24), None, Some(40), Some(32)],
645 )]
646 }
647
648 #[test]
649 fn bit_length_null_string() {

Callers 3

bit_length_null_utf8viewFunction · 0.85
bit_length_null_stringFunction · 0.85

Calls

no outgoing calls

Tested by 3

bit_length_null_utf8viewFunction · 0.68
bit_length_null_stringFunction · 0.68