From 2d56e092765affde1904e76fe912329db0e9eab6 Mon Sep 17 00:00:00 2001 From: Jordan Schidlowsky Date: Thu, 17 Dec 2020 14:26:05 -0600 Subject: packed*arrays are pass by ref now. support duplicate and update documentation --- doc/classes/PackedInt64Array.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'doc/classes/PackedInt64Array.xml') diff --git a/doc/classes/PackedInt64Array.xml b/doc/classes/PackedInt64Array.xml index 83731b1023..f7e9128410 100644 --- a/doc/classes/PackedInt64Array.xml +++ b/doc/classes/PackedInt64Array.xml @@ -5,7 +5,6 @@ An [Array] specifically designed to hold 64-bit integer values. Packs data tightly, so it saves memory for large array sizes. - [b]Note:[/b] This type is passed by value and not by reference. [b]Note:[/b] This type stores signed 64-bit integers, which means it can take values in the interval [code][-2^63, 2^63 - 1][/code], i.e. [code][-9223372036854775808, 9223372036854775807][/code]. Exceeding those bounds will wrap around. If you only need to pack 32-bit integers tightly, see [PackedInt32Array] for a more memory-friendly alternative. @@ -54,6 +53,13 @@ Appends a [PackedInt64Array] at the end of this array. + + + + + Creates a copy of the array, and returns it. + + -- cgit v1.2.3