Chris Morgan
›
Git
›
anymap
› blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
commit
grep
author
committer
pickaxe
?
search:
re
Remove superfluous Clone bound on Entry methods.
[anymap]
/
src
/
raw.rs
diff --git
a/src/raw.rs
b/src/raw.rs
index b103bd7f96b3c1eaf4d21bd28fefc6da81214953..3645429663756e9dacce3cf3ac0440a2c6a06e59 100644
(file)
--- a/
src/raw.rs
+++ b/
src/raw.rs
@@
-80,7
+80,7
@@
impl_common_methods! {
with_capacity(capacity) => HashMap::with_capacity_and_hasher(capacity, Default::default());
}
with_capacity(capacity) => HashMap::with_capacity_and_hasher(capacity, Default::default());
}
-///
RawMap
iterator.
+///
`RawMap`
iterator.
#[derive(Clone)]
pub struct Iter<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::Iter<'a, TypeId, Box<A>>,
#[derive(Clone)]
pub struct Iter<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::Iter<'a, TypeId, Box<A>>,
@@
-94,7
+94,7
@@
impl<'a, A: ?Sized + UncheckedAnyExt> ExactSizeIterator for Iter<'a, A> {
#[inline] fn len(&self) -> usize { self.inner.len() }
}
#[inline] fn len(&self) -> usize { self.inner.len() }
}
-///
RawMap
mutable iterator.
+///
`RawMap`
mutable iterator.
pub struct IterMut<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::IterMut<'a, TypeId, Box<A>>,
}
pub struct IterMut<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::IterMut<'a, TypeId, Box<A>>,
}
@@
-107,7
+107,7
@@
impl<'a, A: ?Sized + UncheckedAnyExt> ExactSizeIterator for IterMut<'a, A> {
#[inline] fn len(&self) -> usize { self.inner.len() }
}
#[inline] fn len(&self) -> usize { self.inner.len() }
}
-///
RawMap
move iterator.
+///
`RawMap`
move iterator.
pub struct IntoIter<A: ?Sized + UncheckedAnyExt> {
inner: hash_map::IntoIter<TypeId, Box<A>>,
}
pub struct IntoIter<A: ?Sized + UncheckedAnyExt> {
inner: hash_map::IntoIter<TypeId, Box<A>>,
}
@@
-120,7
+120,7
@@
impl<A: ?Sized + UncheckedAnyExt> ExactSizeIterator for IntoIter<A> {
#[inline] fn len(&self) -> usize { self.inner.len() }
}
#[inline] fn len(&self) -> usize { self.inner.len() }
}
-///
RawMap
drain iterator.
+///
`RawMap`
drain iterator.
pub struct Drain<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::Drain<'a, TypeId, Box<A>>,
}
pub struct Drain<'a, A: ?Sized + UncheckedAnyExt> {
inner: hash_map::Drain<'a, TypeId, Box<A>>,
}