|
|
|
|
|
by pornel
4011 days ago
|
|
In Rust it's unfortunately typical to give one-letter names to generic types. A verbose version could be: fn search_entry_hashed<'lifetime, KeyType: Eq, ValueType>
(table: &'lifetime mut RawTable<KeyType, ValueType>, hash: SafeHash, key: KeyType)
-> Entry<'lifetime, KeyType, ValueType>
|
|