Home
last modified time | relevance | path

Searched refs:next_to (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/quiche/src/
Dranges.rs65 while let Some(r) = self.next_to(start) { in insert()
148 fn next_to(&self, item: u64) -> Option<Range<u64>> { in next_to() method
398 fn next_to() { in next_to() function
404 assert_eq!(r.next_to(2), Some(4..7)); in next_to()
405 assert_eq!(r.next_to(12), None); in next_to()
406 assert_eq!(r.next_to(15), None); in next_to()
407 assert_eq!(r.next_to(5), Some(9..12)); in next_to()
408 assert_eq!(r.next_to(8), Some(9..12)); in next_to()