Slot method

MemoryPointer<R>? Slot(
  1. String key
)

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

Implementation

MemoryPointer<R>? Slot(String key) => slots[key]?.$1;