The Open
D
Programming Language
Learn
Language
Library
Contribute
Blog
Unique.RefT
std
typecons
Unique
Represents a reference to
T
. Resolves to
T*
if
T
is a value type.
import std.typecons;
struct
Unique
(T)
static if
(
is(T == class) || is(T == interface)
)
alias
RefT
=
T
Meta
Source
See Implementation
std
typecons
Unique
aliases
RefT
constructors
this
functions
opAssign
release
mixins
__anonymous
postblits
this(this)
properties
isEmpty
static functions
create
Represents a reference to T. Resolves to T* if T is a value type.