summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-30 13:28:40 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-30 13:28:40 +0100
commit6d6d6592c928e6d93319f285cf5bf991f6747c71 (patch)
tree9e16e562e2106dc077a58aa5246fd3d11dafbcc5 /doc
parentbde3310f02196c5a0962153426fd0209020af5a6 (diff)
parent5aa87ccc0353939b8bb471aac17875cf0f586ff8 (diff)
Merge pull request #71989 from bruvzg/set_typed_move
Move Array:set_typed to internal GDExtension structure and unexposed it.
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/Array.xml12
1 files changed, 1 insertions, 11 deletions
diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml
index 1ac1c0745e..9be5e60f4a 100644
--- a/doc/classes/Array.xml
+++ b/doc/classes/Array.xml
@@ -59,7 +59,7 @@
<param index="2" name="class_name" type="StringName" />
<param index="3" name="script" type="Variant" />
<description>
- Creates a typed array from the [param base] array. The base array can't be already typed. See [method set_typed] for more details.
+ Creates a typed array from the [param base] array. The base array can't be already typed.
</description>
</constructor>
<constructor name="Array">
@@ -530,16 +530,6 @@
Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array.
</description>
</method>
- <method name="set_typed">
- <return type="void" />
- <param index="0" name="type" type="int" />
- <param index="1" name="class_name" type="StringName" />
- <param index="2" name="script" type="Variant" />
- <description>
- Makes the [Array] typed. The [param type] should be one of the [enum Variant.Type] constants. [param class_name] is optional and can only be provided for [constant TYPE_OBJECT]. [param script] can only be provided if [param class_name] is not empty.
- The method fails if an array is already typed.
- </description>
- </method>
<method name="shuffle">
<return type="void" />
<description>