doc: Sync classref with current source
Fix a few missing bindings or unspecified argument names and default values.
This commit is contained in:
+15
-15
@@ -124,21 +124,6 @@
|
||||
[b]Note:[/b] Calling [method bsearch] on an unsorted array results in unexpected behavior.
|
||||
</description>
|
||||
</method>
|
||||
<method name="slice">
|
||||
<return type="Array">
|
||||
</return>
|
||||
<argument index="0" name="begin" type="int">
|
||||
</argument>
|
||||
<argument index="1" name="end" type="int">
|
||||
</argument>
|
||||
<argument index="2" name="step" type="int" default="1">
|
||||
</argument>
|
||||
<argument index="3" name="deep" type="bool" default="False">
|
||||
</argument>
|
||||
<description>
|
||||
Duplicates the subset described in the function and returns it in an array, deeply copying the array if [code]deep[/code] is true. Lower and upper index are inclusive, with the [code]step[/code] describing the change between indices while slicing.
|
||||
</description>
|
||||
</method>
|
||||
<method name="clear">
|
||||
<description>
|
||||
Clears the array. This is equivalent to using [method resize] with a size of [code]0[/code].
|
||||
@@ -319,6 +304,21 @@
|
||||
Returns the number of elements in the array.
|
||||
</description>
|
||||
</method>
|
||||
<method name="slice">
|
||||
<return type="Array">
|
||||
</return>
|
||||
<argument index="0" name="begin" type="int">
|
||||
</argument>
|
||||
<argument index="1" name="end" type="int">
|
||||
</argument>
|
||||
<argument index="2" name="step" type="int" default="1">
|
||||
</argument>
|
||||
<argument index="3" name="deep" type="bool" default="False">
|
||||
</argument>
|
||||
<description>
|
||||
Duplicates the subset described in the function and returns it in an array, deeply copying the array if [code]deep[/code] is true. Lower and upper index are inclusive, with the [code]step[/code] describing the change between indices while slicing.
|
||||
</description>
|
||||
</method>
|
||||
<method name="sort">
|
||||
<description>
|
||||
Sorts the array.
|
||||
|
||||
Reference in New Issue
Block a user