summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-09 08:34:28 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-09 08:34:28 +0100
commit31f94574d4c114e4fbdca944113601ad09a981b4 (patch)
tree2d14090dff7eac9a30aa1c3d3fb1ec470397c520 /doc
parent9c7723b71755c3172f4b591ff8b1b3ee971f6843 (diff)
parent0e0ca01bce1adecde1de745d2b31d2ad0c12bf6b (diff)
Merge pull request #70996 from reduz/properly-report-callable-bound-arguments
Properly report Callable bound arguments
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/Callable.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/Callable.xml b/doc/classes/Callable.xml
index 5c845ba57e..a6fffae8b5 100644
--- a/doc/classes/Callable.xml
+++ b/doc/classes/Callable.xml
@@ -107,6 +107,12 @@
Calls the method represented by this [Callable]. Unlike [method call], this method expects all arguments to be contained inside the [param arguments] [Array].
</description>
</method>
+ <method name="get_bound_arguments_count" qualifiers="const">
+ <return type="int" />
+ <description>
+ Returns the total amount of arguments bound (or unbound) via successive [method bind] or [method unbind] calls. If the amount of arguments unbound is greater than the ones bound, this function returns a value less than zero.
+ </description>
+ </method>
<method name="get_method" qualifiers="const">
<return type="StringName" />
<description>