diff --git a/doc/classes/PoolByteArray.xml b/doc/classes/PoolByteArray.xml index 4cc158f3f2a..4046e9346b5 100644 --- a/doc/classes/PoolByteArray.xml +++ b/doc/classes/PoolByteArray.xml @@ -1,10 +1,10 @@ - A pooled [Array] of bytes. + A pooled array of bytes. - An [Array] specifically designed to hold bytes. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold bytes. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. diff --git a/doc/classes/PoolColorArray.xml b/doc/classes/PoolColorArray.xml index 6bfd5041723..11cea2a0f14 100644 --- a/doc/classes/PoolColorArray.xml +++ b/doc/classes/PoolColorArray.xml @@ -1,10 +1,10 @@ - A pooled [Array] of [Color]. + A pooled array of [Color]. - An [Array] specifically designed to hold [Color]. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold [Color]. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. diff --git a/doc/classes/PoolIntArray.xml b/doc/classes/PoolIntArray.xml index f03d5a7d41c..3490f1bdb62 100644 --- a/doc/classes/PoolIntArray.xml +++ b/doc/classes/PoolIntArray.xml @@ -1,10 +1,10 @@ - A pooled [Array] of integers ([int]). + A pooled array of integers ([int]). - An [Array] specifically designed to hold integer values ([int]). Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold integer values ([int]). Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. [b]Note:[/b] This type is limited to signed 32-bit integers, which means it can only take values in the interval [code][-2^31, 2^31 - 1][/code], i.e. [code][-2147483648, 2147483647][/code]. Exceeding those bounds will wrap around. In comparison, [int] uses signed 64-bit integers which can hold much larger values. diff --git a/doc/classes/PoolRealArray.xml b/doc/classes/PoolRealArray.xml index 302f2d9022c..c159c87195b 100644 --- a/doc/classes/PoolRealArray.xml +++ b/doc/classes/PoolRealArray.xml @@ -1,10 +1,10 @@ - A pooled [Array] of reals ([float]). + A pooled array of reals ([float]). - An [Array] specifically designed to hold floating-point values. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold floating-point values. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. [b]Note:[/b] Unlike primitive [float]s which are 64-bit, numbers stored in [PoolRealArray] are 32-bit floats. This means values stored in [PoolRealArray] have lower precision compared to primitive [float]s. If you need to store 64-bit floats in an array, use a generic [Array] with [float] elements as these will still be 64-bit. However, using a generic [Array] to store [float]s will use roughly 6 times more memory compared to a [PoolRealArray]. diff --git a/doc/classes/PoolStringArray.xml b/doc/classes/PoolStringArray.xml index a73487fda3a..aac699a2029 100644 --- a/doc/classes/PoolStringArray.xml +++ b/doc/classes/PoolStringArray.xml @@ -1,10 +1,10 @@ - A pooled [Array] of [String]. + A pooled array of [String]. - An [Array] specifically designed to hold [String]s. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold [String]s. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. diff --git a/doc/classes/PoolVector2Array.xml b/doc/classes/PoolVector2Array.xml index 4fdf9c0310b..272bcb298f3 100644 --- a/doc/classes/PoolVector2Array.xml +++ b/doc/classes/PoolVector2Array.xml @@ -1,10 +1,10 @@ - A pooled [Array] of [Vector2]. + A pooled array of [Vector2]. - An [Array] specifically designed to hold [Vector2]. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold [Vector2]. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference. diff --git a/doc/classes/PoolVector3Array.xml b/doc/classes/PoolVector3Array.xml index c3b18592c78..ab0e6ba6753 100644 --- a/doc/classes/PoolVector3Array.xml +++ b/doc/classes/PoolVector3Array.xml @@ -1,10 +1,10 @@ - A pooled [Array] of [Vector3]. + A pooled array of [Vector3]. - An [Array] specifically designed to hold [Vector3]. Optimized for memory usage, does not fragment the memory. + An array specifically designed to hold [Vector3]. Optimized for memory usage, does not fragment the memory. [b]Note:[/b] This type is passed by value and not by reference.