Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/unify/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ where
/// Obtains current value for key without any pointer chasing; may return `None` if key has been union'd.
#[inline]
pub fn try_probe_value<'a, K1>(&'a self, id: K1) -> Option<&'a V>
where
K1: Into<K>,
K: 'a,
where
K1: Into<K>,
K: 'a,
{
let id = id.into();
let v = self.value(id);
Expand Down