Searched refs:and_all (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/arbitrary/src/ |
D | size_hint.rs | 37 pub fn and_all(hints: &[(usize, Option<usize>)]) -> (usize, Option<usize>) { in and_all() function 84 fn and_all() { in and_all() function 85 assert_eq!((0, Some(0)), super::and_all(&[])); in and_all() 88 super::and_all(&[(1, Some(1)), (2, Some(2)), (4, Some(4))]) in and_all() 92 super::and_all(&[(1, Some(1)), (2, Some(2)), (4, None)]) in and_all() 96 super::and_all(&[(1, Some(1)), (2, None), (4, Some(4))]) in and_all() 100 super::and_all(&[(1, None), (2, Some(2)), (4, Some(4))]) in and_all()
|
D | lib.rs | 564 crate::size_hint::and_all(&[ 598 crate::size_hint::and_all(&[ 619 crate::size_hint::and_all(&[]) in size_hint()
|
/external/rust/crates/derive_arbitrary/src/ |
D | lib.rs | 164 arbitrary::size_hint::and_all(&[ in gen_size_hint_method()
|