class_packedstringarray.rst 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/PackedStringArray.xml.
  6. .. _class_PackedStringArray:
  7. PackedStringArray
  8. =================
  9. A packed array of :ref:`String<class_String>`\ s.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold :ref:`String<class_String>`\ s. Packs data tightly, so it saves memory for large array sizes.
  14. If you want to join the strings in the array, use :ref:`String.join<class_String_method_join>`.
  15. ::
  16. var string_array = PackedStringArray(["hello", "world"])
  17. var string = " ".join(string_array)
  18. print(string) # "hello world"
  19. \ **Differences between packed arrays, typed arrays, and untyped arrays:** Packed arrays are generally faster to iterate on and modify compared to a typed array of the same type (e.g. **PackedStringArray** versus ``Array[String]``). Also, packed arrays consume less memory. As a downside, packed arrays are less flexible as they don't offer as many convenience methods such as :ref:`Array.map<class_Array_method_map>`. Typed arrays are in turn faster to iterate on and modify than untyped arrays.
  20. \ **Note:** Packed arrays are always passed by reference. To get a copy of an array that can be modified independently of the original array, use :ref:`duplicate<class_PackedStringArray_method_duplicate>`. This is *not* the case for built-in properties and methods. The returned packed array of these are a copies, and changing it will *not* affect the original value. To update a built-in property you need to modify the returned array, and then assign it to the property again.
  21. .. note::
  22. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  23. .. rst-class:: classref-introduction-group
  24. Tutorials
  25. ---------
  26. - `Operating System Testing Demo <https://godotengine.org/asset-library/asset/2789>`__
  27. .. rst-class:: classref-reftable-group
  28. Constructors
  29. ------------
  30. .. table::
  31. :widths: auto
  32. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  33. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`PackedStringArray<class_PackedStringArray_constructor_PackedStringArray>`\ (\ ) |
  34. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`PackedStringArray<class_PackedStringArray_constructor_PackedStringArray>`\ (\ from\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  36. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`PackedStringArray<class_PackedStringArray_constructor_PackedStringArray>`\ (\ from\: :ref:`Array<class_Array>`\ ) |
  38. +---------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  39. .. rst-class:: classref-reftable-group
  40. Methods
  41. -------
  42. .. table::
  43. :widths: auto
  44. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`bool<class_bool>` | :ref:`append<class_PackedStringArray_method_append>`\ (\ value\: :ref:`String<class_String>`\ ) |
  46. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  47. | |void| | :ref:`append_array<class_PackedStringArray_method_append_array>`\ (\ array\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  48. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedStringArray_method_bsearch>`\ (\ value\: :ref:`String<class_String>`, before\: :ref:`bool<class_bool>` = true\ ) |
  50. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  51. | |void| | :ref:`clear<class_PackedStringArray_method_clear>`\ (\ ) |
  52. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`int<class_int>` | :ref:`count<class_PackedStringArray_method_count>`\ (\ value\: :ref:`String<class_String>`\ ) |const| |
  54. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`duplicate<class_PackedStringArray_method_duplicate>`\ (\ ) |
  56. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  57. | |void| | :ref:`fill<class_PackedStringArray_method_fill>`\ (\ value\: :ref:`String<class_String>`\ ) |
  58. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`int<class_int>` | :ref:`find<class_PackedStringArray_method_find>`\ (\ value\: :ref:`String<class_String>`, from\: :ref:`int<class_int>` = 0\ ) |const| |
  60. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`String<class_String>` | :ref:`get<class_PackedStringArray_method_get>`\ (\ index\: :ref:`int<class_int>`\ ) |const| |
  62. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`bool<class_bool>` | :ref:`has<class_PackedStringArray_method_has>`\ (\ value\: :ref:`String<class_String>`\ ) |const| |
  64. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`int<class_int>` | :ref:`insert<class_PackedStringArray_method_insert>`\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`String<class_String>`\ ) |
  66. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedStringArray_method_is_empty>`\ (\ ) |const| |
  68. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedStringArray_method_push_back>`\ (\ value\: :ref:`String<class_String>`\ ) |
  70. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  71. | |void| | :ref:`remove_at<class_PackedStringArray_method_remove_at>`\ (\ index\: :ref:`int<class_int>`\ ) |
  72. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`int<class_int>` | :ref:`resize<class_PackedStringArray_method_resize>`\ (\ new_size\: :ref:`int<class_int>`\ ) |
  74. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  75. | |void| | :ref:`reverse<class_PackedStringArray_method_reverse>`\ (\ ) |
  76. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`int<class_int>` | :ref:`rfind<class_PackedStringArray_method_rfind>`\ (\ value\: :ref:`String<class_String>`, from\: :ref:`int<class_int>` = -1\ ) |const| |
  78. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  79. | |void| | :ref:`set<class_PackedStringArray_method_set>`\ (\ index\: :ref:`int<class_int>`, value\: :ref:`String<class_String>`\ ) |
  80. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`int<class_int>` | :ref:`size<class_PackedStringArray_method_size>`\ (\ ) |const| |
  82. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`slice<class_PackedStringArray_method_slice>`\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| |
  84. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  85. | |void| | :ref:`sort<class_PackedStringArray_method_sort>`\ (\ ) |
  86. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedStringArray_method_to_byte_array>`\ (\ ) |const| |
  88. +---------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  89. .. rst-class:: classref-reftable-group
  90. Operators
  91. ---------
  92. .. table::
  93. :widths: auto
  94. +---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedStringArray_operator_neq_PackedStringArray>`\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  96. +---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`PackedStringArray<class_PackedStringArray>` | :ref:`operator +<class_PackedStringArray_operator_sum_PackedStringArray>`\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  98. +---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedStringArray_operator_eq_PackedStringArray>`\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) |
  100. +---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`String<class_String>` | :ref:`operator []<class_PackedStringArray_operator_idx_int>`\ (\ index\: :ref:`int<class_int>`\ ) |
  102. +---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
  103. .. rst-class:: classref-section-separator
  104. ----
  105. .. rst-class:: classref-descriptions-group
  106. Constructor Descriptions
  107. ------------------------
  108. .. _class_PackedStringArray_constructor_PackedStringArray:
  109. .. rst-class:: classref-constructor
  110. :ref:`PackedStringArray<class_PackedStringArray>` **PackedStringArray**\ (\ ) :ref:`🔗<class_PackedStringArray_constructor_PackedStringArray>`
  111. Constructs an empty **PackedStringArray**.
  112. .. rst-class:: classref-item-separator
  113. ----
  114. .. rst-class:: classref-constructor
  115. :ref:`PackedStringArray<class_PackedStringArray>` **PackedStringArray**\ (\ from\: :ref:`PackedStringArray<class_PackedStringArray>`\ )
  116. Constructs a **PackedStringArray** as a copy of the given **PackedStringArray**.
  117. .. rst-class:: classref-item-separator
  118. ----
  119. .. rst-class:: classref-constructor
  120. :ref:`PackedStringArray<class_PackedStringArray>` **PackedStringArray**\ (\ from\: :ref:`Array<class_Array>`\ )
  121. Constructs a new **PackedStringArray**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  122. .. rst-class:: classref-section-separator
  123. ----
  124. .. rst-class:: classref-descriptions-group
  125. Method Descriptions
  126. -------------------
  127. .. _class_PackedStringArray_method_append:
  128. .. rst-class:: classref-method
  129. :ref:`bool<class_bool>` **append**\ (\ value\: :ref:`String<class_String>`\ ) :ref:`🔗<class_PackedStringArray_method_append>`
  130. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedStringArray_method_push_back>`).
  131. .. rst-class:: classref-item-separator
  132. ----
  133. .. _class_PackedStringArray_method_append_array:
  134. .. rst-class:: classref-method
  135. |void| **append_array**\ (\ array\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_PackedStringArray_method_append_array>`
  136. Appends a **PackedStringArray** at the end of this array.
  137. .. rst-class:: classref-item-separator
  138. ----
  139. .. _class_PackedStringArray_method_bsearch:
  140. .. rst-class:: classref-method
  141. :ref:`int<class_int>` **bsearch**\ (\ value\: :ref:`String<class_String>`, before\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_PackedStringArray_method_bsearch>`
  142. Finds the index of an existing value (or the insertion index that maintains sorting order, if the value is not yet present in the array) using binary search. Optionally, a ``before`` specifier can be passed. If ``false``, the returned index comes after all existing entries of the value in the array.
  143. \ **Note:** Calling :ref:`bsearch<class_PackedStringArray_method_bsearch>` on an unsorted array results in unexpected behavior.
  144. .. rst-class:: classref-item-separator
  145. ----
  146. .. _class_PackedStringArray_method_clear:
  147. .. rst-class:: classref-method
  148. |void| **clear**\ (\ ) :ref:`🔗<class_PackedStringArray_method_clear>`
  149. Clears the array. This is equivalent to using :ref:`resize<class_PackedStringArray_method_resize>` with a size of ``0``.
  150. .. rst-class:: classref-item-separator
  151. ----
  152. .. _class_PackedStringArray_method_count:
  153. .. rst-class:: classref-method
  154. :ref:`int<class_int>` **count**\ (\ value\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_PackedStringArray_method_count>`
  155. Returns the number of times an element is in the array.
  156. .. rst-class:: classref-item-separator
  157. ----
  158. .. _class_PackedStringArray_method_duplicate:
  159. .. rst-class:: classref-method
  160. :ref:`PackedStringArray<class_PackedStringArray>` **duplicate**\ (\ ) :ref:`🔗<class_PackedStringArray_method_duplicate>`
  161. Creates a copy of the array, and returns it.
  162. .. rst-class:: classref-item-separator
  163. ----
  164. .. _class_PackedStringArray_method_fill:
  165. .. rst-class:: classref-method
  166. |void| **fill**\ (\ value\: :ref:`String<class_String>`\ ) :ref:`🔗<class_PackedStringArray_method_fill>`
  167. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedStringArray_method_resize>` to create an array with a given size and initialized elements.
  168. .. rst-class:: classref-item-separator
  169. ----
  170. .. _class_PackedStringArray_method_find:
  171. .. rst-class:: classref-method
  172. :ref:`int<class_int>` **find**\ (\ value\: :ref:`String<class_String>`, from\: :ref:`int<class_int>` = 0\ ) |const| :ref:`🔗<class_PackedStringArray_method_find>`
  173. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  174. .. rst-class:: classref-item-separator
  175. ----
  176. .. _class_PackedStringArray_method_get:
  177. .. rst-class:: classref-method
  178. :ref:`String<class_String>` **get**\ (\ index\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_PackedStringArray_method_get>`
  179. Returns the :ref:`String<class_String>` at the given ``index`` in the array. This is the same as using the ``[]`` operator (``array[index]``).
  180. .. rst-class:: classref-item-separator
  181. ----
  182. .. _class_PackedStringArray_method_has:
  183. .. rst-class:: classref-method
  184. :ref:`bool<class_bool>` **has**\ (\ value\: :ref:`String<class_String>`\ ) |const| :ref:`🔗<class_PackedStringArray_method_has>`
  185. Returns ``true`` if the array contains ``value``.
  186. .. rst-class:: classref-item-separator
  187. ----
  188. .. _class_PackedStringArray_method_insert:
  189. .. rst-class:: classref-method
  190. :ref:`int<class_int>` **insert**\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`String<class_String>`\ ) :ref:`🔗<class_PackedStringArray_method_insert>`
  191. Inserts a new element at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
  192. .. rst-class:: classref-item-separator
  193. ----
  194. .. _class_PackedStringArray_method_is_empty:
  195. .. rst-class:: classref-method
  196. :ref:`bool<class_bool>` **is_empty**\ (\ ) |const| :ref:`🔗<class_PackedStringArray_method_is_empty>`
  197. Returns ``true`` if the array is empty.
  198. .. rst-class:: classref-item-separator
  199. ----
  200. .. _class_PackedStringArray_method_push_back:
  201. .. rst-class:: classref-method
  202. :ref:`bool<class_bool>` **push_back**\ (\ value\: :ref:`String<class_String>`\ ) :ref:`🔗<class_PackedStringArray_method_push_back>`
  203. Appends a string element at end of the array.
  204. .. rst-class:: classref-item-separator
  205. ----
  206. .. _class_PackedStringArray_method_remove_at:
  207. .. rst-class:: classref-method
  208. |void| **remove_at**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedStringArray_method_remove_at>`
  209. Removes an element from the array by index.
  210. .. rst-class:: classref-item-separator
  211. ----
  212. .. _class_PackedStringArray_method_resize:
  213. .. rst-class:: classref-method
  214. :ref:`int<class_int>` **resize**\ (\ new_size\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedStringArray_method_resize>`
  215. Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling :ref:`resize<class_PackedStringArray_method_resize>` once and assigning the new values is faster than adding new elements one by one.
  216. .. rst-class:: classref-item-separator
  217. ----
  218. .. _class_PackedStringArray_method_reverse:
  219. .. rst-class:: classref-method
  220. |void| **reverse**\ (\ ) :ref:`🔗<class_PackedStringArray_method_reverse>`
  221. Reverses the order of the elements in the array.
  222. .. rst-class:: classref-item-separator
  223. ----
  224. .. _class_PackedStringArray_method_rfind:
  225. .. rst-class:: classref-method
  226. :ref:`int<class_int>` **rfind**\ (\ value\: :ref:`String<class_String>`, from\: :ref:`int<class_int>` = -1\ ) |const| :ref:`🔗<class_PackedStringArray_method_rfind>`
  227. 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.
  228. .. rst-class:: classref-item-separator
  229. ----
  230. .. _class_PackedStringArray_method_set:
  231. .. rst-class:: classref-method
  232. |void| **set**\ (\ index\: :ref:`int<class_int>`, value\: :ref:`String<class_String>`\ ) :ref:`🔗<class_PackedStringArray_method_set>`
  233. Changes the :ref:`String<class_String>` at the given index.
  234. .. rst-class:: classref-item-separator
  235. ----
  236. .. _class_PackedStringArray_method_size:
  237. .. rst-class:: classref-method
  238. :ref:`int<class_int>` **size**\ (\ ) |const| :ref:`🔗<class_PackedStringArray_method_size>`
  239. Returns the number of elements in the array.
  240. .. rst-class:: classref-item-separator
  241. ----
  242. .. _class_PackedStringArray_method_slice:
  243. .. rst-class:: classref-method
  244. :ref:`PackedStringArray<class_PackedStringArray>` **slice**\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| :ref:`🔗<class_PackedStringArray_method_slice>`
  245. Returns the slice of the **PackedStringArray**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedStringArray**.
  246. The absolute value of ``begin`` and ``end`` will be clamped to the array size, so the default value for ``end`` makes it slice to the size of the array by default (i.e. ``arr.slice(1)`` is a shorthand for ``arr.slice(1, arr.size())``).
  247. If either ``begin`` or ``end`` are negative, they will be relative to the end of the array (i.e. ``arr.slice(0, -2)`` is a shorthand for ``arr.slice(0, arr.size() - 2)``).
  248. .. rst-class:: classref-item-separator
  249. ----
  250. .. _class_PackedStringArray_method_sort:
  251. .. rst-class:: classref-method
  252. |void| **sort**\ (\ ) :ref:`🔗<class_PackedStringArray_method_sort>`
  253. Sorts the elements of the array in ascending order.
  254. .. rst-class:: classref-item-separator
  255. ----
  256. .. _class_PackedStringArray_method_to_byte_array:
  257. .. rst-class:: classref-method
  258. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array**\ (\ ) |const| :ref:`🔗<class_PackedStringArray_method_to_byte_array>`
  259. Returns a :ref:`PackedByteArray<class_PackedByteArray>` with each string encoded as bytes.
  260. .. rst-class:: classref-section-separator
  261. ----
  262. .. rst-class:: classref-descriptions-group
  263. Operator Descriptions
  264. ---------------------
  265. .. _class_PackedStringArray_operator_neq_PackedStringArray:
  266. .. rst-class:: classref-operator
  267. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_PackedStringArray_operator_neq_PackedStringArray>`
  268. Returns ``true`` if contents of the arrays differ.
  269. .. rst-class:: classref-item-separator
  270. ----
  271. .. _class_PackedStringArray_operator_sum_PackedStringArray:
  272. .. rst-class:: classref-operator
  273. :ref:`PackedStringArray<class_PackedStringArray>` **operator +**\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_PackedStringArray_operator_sum_PackedStringArray>`
  274. Returns a new **PackedStringArray** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedStringArray_method_append_array>` instead.
  275. .. rst-class:: classref-item-separator
  276. ----
  277. .. _class_PackedStringArray_operator_eq_PackedStringArray:
  278. .. rst-class:: classref-operator
  279. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`PackedStringArray<class_PackedStringArray>`\ ) :ref:`🔗<class_PackedStringArray_operator_eq_PackedStringArray>`
  280. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal :ref:`String<class_String>`\ s at the corresponding indices.
  281. .. rst-class:: classref-item-separator
  282. ----
  283. .. _class_PackedStringArray_operator_idx_int:
  284. .. rst-class:: classref-operator
  285. :ref:`String<class_String>` **operator []**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedStringArray_operator_idx_int>`
  286. Returns the :ref:`String<class_String>` at index ``index``. Negative indices can be used to access the elements starting from the end. Using index out of array's bounds will result in an error.
  287. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  288. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  289. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  290. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  291. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  292. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  293. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  294. .. |void| replace:: :abbr:`void (No return value.)`