(&self, vm: &VirtualMachine, key: &K)
| 333 | /// Retrieve a key |
| 334 | #[cfg_attr(feature = "flame-it", flame("Dict"))] |
| 335 | pub fn get<K: DictKey + ?Sized>(&self, vm: &VirtualMachine, key: &K) -> PyResult<Option<T>> { |
| 336 | let hash = key.key_hash(vm)?; |
| 337 | self._get_inner(vm, key, hash) |
| 338 | } |
| 339 | |
| 340 | /// Return a stable entry hint for `key` if present. |
| 341 | /// |