Skip to content

Commit 9d98410

Browse files
committed
Revert "Remove unnecessary methods"
This reverts commit ba38763. Don't be lazy Tobin, do a deprecation cycle.
1 parent 26b8b06 commit 9d98410

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/lib.rs

+10
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,16 @@ impl<T> Ordered<T> {
135135
/// This allows: `let found = map.get(Ordered::from_ref(&a));`
136136
#[allow(clippy::ptr_as_ptr)]
137137
pub fn from_ref(value: &T) -> &Self { unsafe { &*(value as *const _ as *const Self) } }
138+
139+
/// Returns a reference to the inner object.
140+
///
141+
/// We also implement [`core::borrow::Borrow`] so this function is never explicitly needed.
142+
pub const fn as_inner(&self) -> &T { &self.0 }
143+
144+
/// Returns the inner object.
145+
///
146+
/// We also implement [`core::ops::Deref`] so this function is never explicitly needed.
147+
pub fn into_inner(self) -> T { self.0 }
138148
}
139149

140150
impl<T: ArbitraryOrd> ArbitraryOrd for &T {

0 commit comments

Comments
 (0)