Home
last modified time | relevance | path

Searched defs:ExtractIf (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/rust/library/alloc/src/vec/
Dextract_if.rs23 pub struct ExtractIf< struct
42 impl<T, F, A: Allocator> ExtractIf<'_, T, F, A> argument
55 impl<T, F, A: Allocator> Iterator for ExtractIf<'_, T, F, A> implementation
91 impl<T, F, A: Allocator> Drop for ExtractIf<'_, T, F, A> implementation
/third_party/rust/rust/library/alloc/src/collections/
Dlinked_list.rs1813 pub struct ExtractIf< struct
1829 impl<T, F, A: Allocator> Iterator for ExtractIf<'_, T, F, A> argument
1858 impl<T: fmt::Debug, F> fmt::Debug for ExtractIf<'_, T, F> implementation
/third_party/rust/rust/library/alloc/src/collections/btree/
Dset.rs1278 pub struct ExtractIf< struct
1288 inner: super::map::ExtractIfInner<'a, T, SetValZST>, argument
1294 impl<T, F, A: Allocator + Clone> fmt::Debug for ExtractIf<'_, T, F, A> argument
1305 impl<'a, T, F, A: Allocator + Clone> Iterator for ExtractIf<'_, T, F, A> implementation
1323 impl<T, F, A: Allocator + Clone> FusedIterator for ExtractIf<'_, T, F, A> where F: FnMut(&T) -> boo… implementation
Dmap.rs1902 pub struct ExtractIf< struct
1912 inner: ExtractIfInner<'a, K, V>, argument
1916 /// Most of the implementation of ExtractIf are generic over the type argument
1931 impl<K, V, F> fmt::Debug for ExtractIf<'_, K, V, F> implementation
1943 impl<K, V, F, A: Allocator + Clone> Iterator for ExtractIf<'_, K, V, F, A> implementation
2003 impl<K, V, F> FusedIterator for ExtractIf<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {} implementation
/third_party/rust/rust/library/std/src/collections/hash/
Dset.rs1330 pub struct ExtractIf<'a, K, F> struct
1334 base: base::ExtractIf<'a, K, F>, argument
1581 impl<K, F> Iterator for ExtractIf<'_, K, F> implementation
1598 impl<K, F> FusedIterator for ExtractIf<'_, K, F> where F: FnMut(&K) -> bool {} implementation
1601 impl<'a, K, F> fmt::Debug for ExtractIf<'a, K, F> implementation
Dmap.rs1598 pub struct ExtractIf<'a, K, V, F> struct
1602 base: base::ExtractIf<'a, K, V, F>, argument
2483 impl<K, V, F> Iterator for ExtractIf<'_, K, V, F> implementation
2500 impl<K, V, F> FusedIterator for ExtractIf<'_, K, V, F> where F: FnMut(&K, &mut V) -> bool {} implementation
2503 impl<'a, K, V, F> fmt::Debug for ExtractIf<'a, K, V, F> implementation