diff options
author | kobewi <kobewi4e@gmail.com> | 2023-04-29 00:05:16 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-04-29 00:29:40 +0200 |
commit | c08e96ef0dd8f048699b1ba00e2ce7fee12edaa8 (patch) | |
tree | 053ffce419ad31629a16b49687a5685174664882 /doc/classes/PackedDataContainerRef.xml | |
parent | 9f12e7b52d944281a39b7d3a33de6700c76cc23a (diff) | |
download | redot-engine-c08e96ef0dd8f048699b1ba00e2ce7fee12edaa8.tar.gz |
Improve and document PackedDataContainer
Diffstat (limited to 'doc/classes/PackedDataContainerRef.xml')
-rw-r--r-- | doc/classes/PackedDataContainerRef.xml | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/doc/classes/PackedDataContainerRef.xml b/doc/classes/PackedDataContainerRef.xml index 47285fa8d6..440673d9b0 100644 --- a/doc/classes/PackedDataContainerRef.xml +++ b/doc/classes/PackedDataContainerRef.xml @@ -1,9 +1,31 @@ <?xml version="1.0" encoding="UTF-8" ?> <class name="PackedDataContainerRef" inherits="RefCounted" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> <brief_description> - Reference-counted version of [PackedDataContainer]. + Internal class used by [PackedDataContainer]. </brief_description> <description> + When packing nested containers using [PackedDataContainer], they are recursively packed into [PackedDataContainerRef] (only applies to [Array] and [Dictionary]). Their data can be retrieved the same way as from [PackedDataContainer]. + [codeblock] + var packed = PackedDataContainer.new() + packed.pack([1, 2, 3, ["abc", "def"], 4, 5, 6]) + + for element in packed: + if element is PackedDataContainerRef: + for subelement in element: + print("::", subelement) + else: + print(element) + + # Prints: + # 1 + # 2 + # 3 + # ::abc + # ::def + # 4 + # 5 + # 6 + [/codeblock] </description> <tutorials> </tutorials> @@ -11,6 +33,7 @@ <method name="size" qualifiers="const"> <return type="int" /> <description> + Returns the size of the packed container (see [method Array.size] and [method Dictionary.size]). </description> </method> </methods> |