Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bind Array get and set functions | Aaron Franke | 2024-09-26 | 1 | -0/+15 |
| | |||||
* | Merge pull request #95449 from SlashScreen/array_functions | Rémi Verschelde | 2024-09-20 | 1 | -0/+39 |
|\ | | | | | | | Add callable support for `find` and `rfind` `Array` methods | ||||
| * | Add callable support for `find` and `rfind` `Array` methods | Slashscreen | 2024-09-13 | 1 | -0/+39 |
| | | |||||
* | | Fix description of `Array.sort_custom()` | Daylily-Zeleen | 2024-09-15 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #95749 from Mickeon/documentation-example-pruning | Rémi Verschelde | 2024-08-26 | 1 | -2/+1 |
|\ \ | | | | | | | | | | Remove empty `[b]Example:[/b]` lines from the class reference | ||||
| * | | Remove empty `[b]Example:[/b]` lines from the class reference | Micky | 2024-08-19 | 1 | -2/+1 |
| |/ | |||||
* | | Fix Array.sort_custom example code | aaronp64 | 2024-08-26 | 1 | -1/+1 |
| | | | | | | | | Array.sort_custom descending sort example was comparing index 0, but had expected result based on comparing index 1. Updated to use index 1 consistently. | ||||
* | | Fix typo in Array code example | Tallivm | 2024-08-24 | 1 | -1/+1 |
|/ | |||||
* | Fix typo in Array's sort() method description | Eduardo Assis | 2024-07-27 | 1 | -1/+1 |
| | |||||
* | Overhaul Array Documentation | Micky | 2024-07-05 | 1 | -230/+309 |
| | |||||
* | Add PackedVector4Array Variant type | K. S. Ernest (iFire) Lee | 2024-05-03 | 1 | -0/+7 |
| | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | ||||
* | Merge pull request #79075 from dalexeev/doc-typed-arrays | Rémi Verschelde | 2024-04-08 | 1 | -4/+27 |
|\ | | | | | | | Update typed arrays documentation | ||||
| * | Update typed arrays documentation | Danil Alexeev | 2023-07-05 | 1 | -4/+27 |
| | | |||||
* | | Merge pull request #78257 from Calinou/doc-packed-arrays-vs-typed-arrays | Rémi Verschelde | 2024-04-08 | 1 | -0/+1 |
|\ \ | | | | | | | | | | Document the upsides and downsides of packed arrays versus typed arrays | ||||
| * | | Document the upsides and downsides of packed arrays versus typed arrays | Hugo Locurcio | 2023-11-15 | 1 | -0/+1 |
| | | | |||||
* | | | [Doc] Clarify `bsearch(_custom)` behavior | A Thousand Ships | 2024-03-09 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | * Added an example for the effect of `before` * Clarified the arguments to the custom callable can be either order | ||||
* | | | Update class reference to include some keywords | RedMser | 2024-02-09 | 1 | -1/+1 |
| | | | | | | | | | | | | More should be added in future PRs, wherever there is demand. | ||||
* | | | Replace some "uncommon" words in class reference | Micky | 2024-01-15 | 1 | -1/+1 |
| | | | |||||
* | | | Add performance note to Array.resize() | MewPurPur | 2023-11-10 | 1 | -0/+1 |
|/ / | |||||
* | | Merge pull request #80936 from curious-broccoli/fix-array-doc | Yuri Sizov | 2023-08-25 | 1 | -5/+6 |
|\ \ | | | | | | | | | | Clarify Array class methods that return error | ||||
| * | | Clarify Array class methods that return error | curious-broccoli | 2023-08-24 | 1 | -5/+6 |
| | | | | | | | | | | | | related to #47406 | ||||
* | | | Document pick_random for empty arrays | David Turner | 2023-08-18 | 1 | -1/+1 |
|/ / | |||||
* | | Fix range error for `Array.slice` | Ninni Pipping | 2023-07-07 | 1 | -0/+1 |
| | | |||||
* | | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -1/+1 |
| | | | | | | | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb). | ||||
* | | Bump version to 4.2-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
|/ | | | | Keep on waitin' | ||||
* | Update Array's `remove_at()` description to cover removing the last element | Peter Anderson | 2023-06-19 | 1 | -0/+1 |
| | |||||
* | Overhaul the top sections of the class reference (Core classes) | VolTer | 2023-05-19 | 1 | -3/+2 |
| | |||||
* | Document how to make custom min/max for Array | Ninni Pipping | 2023-04-10 | 1 | -0/+11 |
| | |||||
* | Remove outdated note about const in Dictionary and Array docs | George Marques | 2023-03-08 | 1 | -1/+0 |
| | |||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | Merge pull request #71786 from raulsntos/dotnet/array | Rémi Verschelde | 2023-02-04 | 1 | -9/+17 |
|\ | | | | | | | Sync C# Array with Core | ||||
| * | Sync C# Array with Core | Raul Santos | 2023-01-30 | 1 | -9/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add `AddRange` method. - Add `Fill` method. - Add `Max` and `Min` methods. - Add `PickRandom` method. - Add `Reverse` method. - Add `RecursiveEqual` method. - Add `Sort` method. - Add `Slice` and `GetSliceRange` methods. - Add `IndexOf` overload that takes an index parameter. - Add `LastIndexOf` method. - Add `BinarySearch` method. - Add/update documentation. | ||||
* | | GDScript: Fix issues with typed arrays | Dmitrii Maganov | 2023-01-31 | 1 | -9/+16 |
| | | |||||
* | | Move Array:set_typed to internal GDExtension structure and unexposed it. | bruvzg | 2023-01-30 | 1 | -11/+1 |
|/ | |||||
* | GDScript: Fix test for read-only state of constants | Dmitrii Maganov | 2023-01-27 | 1 | -8/+7 |
| | |||||
* | Add property usage to array indexer | Raul Santos | 2023-01-19 | 1 | -1/+1 |
| | | | | This makes the `Array` indexer show as returning `Variant` instead of `void` in the documentation. | ||||
* | Merge pull request #70745 from rcorre/array_dup_doc | Rémi Verschelde | 2023-01-10 | 1 | -1/+1 |
|\ | | | | | | | Explain that Array.duplicate will not deep-copy Object. | ||||
| * | Explain that Array.duplicate will not deep-copy Object. | Ryan Roden-Corrent | 2022-12-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | This was somewhat implied by specifically calling out nested arrays and dictionaries, but I was still unsure and had to test it myself. One might expect that `Resource` objects, which have a `duplicate` method, might be deep-copied. | ||||
* | | Warn against erasing array elements while iterating. | Ryan Roden-Corrent | 2023-01-06 | 1 | -0/+2 |
|/ | | | | | | | | | | | | | | | | | Erasing array elements while iterating does not appear to be safe. For example, the following prints nothing: ``` var a := [0,1,2,3,4,5,6] for i in a: if i % 2 == 0: a.erase(i) else: print(i) ``` While this is often true for array implementations, it still seems worth documenting explicitly. I copied the wording from Dictionary.xml. | ||||
* | Remove `Array.find_last()` | Micky | 2022-11-25 | 1 | -7/+0 |
| | |||||
* | Style: Misc docs and comment style and language fixes | Rémi Verschelde | 2022-11-02 | 1 | -4/+3 |
| | | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`. | ||||
* | Docs Clarify `Array.fill` behavior when reference type is passed in | kleonc | 2022-10-30 | 1 | -0/+1 |
| | |||||
* | Merge pull request #67444 from nonunknown/array_pick_random | Max Hilbrunner | 2022-10-21 | 1 | -0/+10 |
|\ | | | | | Add ability to pick random value from array | ||||
| * | add ability to pick random value from array | Nonunknown | 2022-10-20 | 1 | -0/+10 |
| | | |||||
* | | Merge pull request #67001 from KoBeWi/🎲 | Max Hilbrunner | 2022-10-19 | 1 | -0/+10 |
|\ \ | |/ |/| | Fill random docs | ||||
| * | Fill random docs | kobewi | 2022-10-07 | 1 | -0/+10 |
| | | |||||
* | | Document `Array.sort()` and `sort_custom()` using unstable sorting | Hugo Locurcio | 2022-10-08 | 1 | -1/+3 |
|/ | |||||
* | [GDExtension] Implement support for typed arrays. | bruvzg | 2022-09-22 | 1 | -0/+54 |
| | |||||
* | [doc] Fix grammar in class docs: less vs. fewer/lower | Andy Maloney | 2022-08-18 | 1 | -2/+2 |
| | |||||
* | [doc] Use "param" instead of "code" to refer to parameters (8) | Andy Maloney | 2022-08-12 | 1 | -19/+19 |
| |