Skip to content

Commit

Permalink
Merge pull request #3 from cuviper/remove-old-docs
Browse files Browse the repository at this point in the history
Clean up old irrelevant docs
  • Loading branch information
cuviper authored Jan 22, 2025
2 parents 1116ddb + aee0a63 commit 6786696
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
//! [`map::serde_seq`] module.
//! * `borsh`: Adds implementations for [`BorshSerialize`] and [`BorshDeserialize`]
//! to [`RingMap`] and [`RingSet`].
//! `use borsh_derive::{BorshSerialize, BorshDeserialize};`.
//! * `arbitrary`: Adds implementations for the [`arbitrary::Arbitrary`] trait
//! to [`RingMap`] and [`RingSet`].
//! * `quickcheck`: Adds implementations for the [`quickcheck::Arbitrary`] trait
Expand Down
3 changes: 0 additions & 3 deletions src/map/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ use core::ops::{self, Bound, Index, IndexMut, RangeBounds};
///
/// This supports indexed operations much like a `[(K, V)]` slice,
/// but not any hashed operations on the map keys.
///
/// Unlike `RingMap`, `Slice` does consider the order for [`PartialEq`]
/// and [`Eq`], and it also implements [`PartialOrd`], [`Ord`], and [`Hash`].
#[repr(transparent)]
pub struct Slice<K, V> {
pub(crate) entries: [Bucket<K, V>],
Expand Down
3 changes: 0 additions & 3 deletions src/set/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ use core::ops::{self, Bound, Index, RangeBounds};
///
/// This supports indexed operations much like a `[T]` slice,
/// but not any hashed operations on the values.
///
/// Unlike `RingSet`, `Slice` does consider the order for [`PartialEq`]
/// and [`Eq`], and it also implements [`PartialOrd`], [`Ord`], and [`Hash`].
#[repr(transparent)]
pub struct Slice<T> {
pub(crate) entries: [Bucket<T>],
Expand Down

0 comments on commit 6786696

Please sign in to comment.