We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26b8b06 commit 9d98410Copy full SHA for 9d98410
src/lib.rs
@@ -135,6 +135,16 @@ impl<T> Ordered<T> {
135
/// This allows: `let found = map.get(Ordered::from_ref(&a));`
136
#[allow(clippy::ptr_as_ptr)]
137
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 }
148
}
149
150
impl<T: ArbitraryOrd> ArbitraryOrd for &T {
0 commit comments