Slot method

Pointer<T>? Slot(
  1. String key
)

Returns the pointer stored under key, or null if the slot does not exist. Does not allocate.

Implementation

Pointer<T>? Slot(String key) => _Slots[_slotKey(key)]?.$1;