godot-d ~master (2021-09-08T21:50:27Z)
Dub
Repo
PoolArray.Access
godot
core
poolarrays
PoolArray
Read/Write access locks with RAII.
struct
PoolArray
(T)
@
nogc
nothrow static
struct
Access (
bool
write
= false
) {
static if
(
write
)
inout
(
T
[])
data
();
static if
(!(
write
))
const
(
T
[])
data
();
this
(PoolArray!T p);
this(this)
;
void
opAssign
(typeof(this) other);
~this
();
}
Constructors
this
this
(PoolArray!T p)
Undocumented in source.
Destructor
~this
~this
()
Undocumented in source.
Postblit
this(this)
this(this)
Undocumented in source.
Alias This
data
Members
Functions
data
inout
(
T
[])
data
()
data
const
(
T
[])
data
()
opAssign
void
opAssign
(typeof(this) other)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
godot
core
poolarrays
PoolArray
aliases
Read
Write
append
append_array
length
opDollar
constructors
this
destructors
~this
functions
empty
insert
invert
opAssign
opBinary
opIndex
opIndexAssign
opSlice
pushBack
read
remove
resize
set
size
write
postblits
this(this)
structs
Access
Range
templates
opOpAssign
Read/Write access locks with RAII.