Home
last modified time | relevance | path

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

/external/rust/crates/itertools/src/
Dk_smallest.rs15 *heap.peek_mut().unwrap() = i; in k_smallest()
/external/rust/crates/futures/tests/
Dstream_peekable.rs25 if let Some(p) = s.as_mut().peek_mut().await { in peekable_mut()
/external/rust/crates/hashlink/tests/
Dlru_cache.rs136 assert_eq!(cache.peek_mut(&3), Some(&mut 30)); in test_peek()
/external/rust/crates/futures-util/src/stream/
Dfutures_ordered.rs182 if let Some(next_output) = this.queued_outputs.peek_mut() { in poll_next()
/external/rust/crates/hashlink/
DCHANGELOG.md42 - Add `LruCache::peek` and `LruCache::peek_mut` to access the cache without
/external/rust/crates/hashlink/src/
Dlru_cache.rs124 pub fn peek_mut<Q>(&mut self, k: &Q) -> Option<&mut V> in peek_mut() function
/external/rust/crates/xml-rs/src/
Dnamespace.rs241 pub fn peek_mut(&mut self) -> &mut Namespace { in peek_mut() method
/external/rust/crates/futures-util/src/stream/stream/
Dpeek.rs86 pub fn peek_mut(self: Pin<&mut Self>) -> PeekMut<'_, St> { in peek_mut() method