godot.core.poolarrays

Memory-pool-based dynamic arrays. Optimized for memory usage, can’t fragment the memory.

Members

Aliases

PoolByteArray
alias PoolByteArray = PoolArray!ubyte
Undocumented in source.
PoolColorArray
alias PoolColorArray = PoolArray!Color
Undocumented in source.
PoolIntArray
alias PoolIntArray = PoolArray!int
Undocumented in source.
PoolRealArray
alias PoolRealArray = PoolArray!real_t
Undocumented in source.
PoolStringArray
alias PoolStringArray = PoolArray!String
Undocumented in source.
PoolVector2Array
alias PoolVector2Array = PoolArray!Vector2
Undocumented in source.
PoolVector3Array
alias PoolVector3Array = PoolArray!Vector3
Undocumented in source.

Structs

PoolArray
struct PoolArray(T)

Copy-on-write array for some Godot types, allocated with a memory pool.

Meta