Expand description
Returned reference types and read/write guards.
See ContiguousMemoryStorage::push
for information on implementation specific return values.
Structs§
- Contiguous
Entry Ref - A thread-unsafe reference to
Tdata stored inContiguousMemoryStoragestructure. - Memory
Read Guard - A smart reference wrapper responsible for tracking and managing a flag that indicates whether the memory segment is actively being read from.
- Memory
Write Guard - A smart reference wrapper responsible for tracking and managing a flag that indicates whether the memory segment is actively being written to.
- Sync
Contiguous Entry Ref - A synchronized (thread-safe) reference to
Tdata stored in aContiguousMemoryStoragestructure.
Type Aliases§
- CERef
- A shorter type name for
ContiguousEntryRef. - SCERef
- A shorter type name for
SyncContiguousEntryRef.