lwdr ~master (2021-10-15T13:07:10Z)
Dub
Repo
RefCount.Interior
lwdr
refcount
RefCount
A heap allocated struct which contains the item and number of references
struct
RefCount
(T)
static
struct
Interior {
shared
static if
(
is(T == shared)
)
size_t
count
;
static if
(!(
is(T == shared)
))
size_t
count
;
T
item
;
}
Alias This
item
Members
Variables
count
size_t
count
;
Undocumented in source.
count
size_t
count
;
Undocumented in source.
item
T
item
;
Undocumented in source.
Meta
Source
See Implementation
lwdr
refcount
RefCount
constructors
this
destructors
~this
functions
opAssign
opIndex
opIndexAssign
opSlice
opUnary
postblits
this(this)
structs
Interior
variables
interior
A heap allocated struct which contains the item and number of references