class_packedint32array.rst 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  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/PackedInt32Array.xml.
  6. .. _class_PackedInt32Array:
  7. PackedInt32Array
  8. ================
  9. A packed array of 32-bit integers.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold 32-bit integer values. Packs data tightly, so it saves memory for large array sizes.
  14. \ **Note:** This type stores signed 32-bit integers, which means it can take values in the interval ``[-2^31, 2^31 - 1]``, i.e. ``[-2147483648, 2147483647]``. Exceeding those bounds will wrap around. In comparison, :ref:`int<class_int>` uses signed 64-bit integers which can hold much larger values. If you need to pack 64-bit integers tightly, see :ref:`PackedInt64Array<class_PackedInt64Array>`.
  15. .. note::
  16. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  17. .. rst-class:: classref-reftable-group
  18. Constructors
  19. ------------
  20. .. table::
  21. :widths: auto
  22. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  23. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`PackedInt32Array<class_PackedInt32Array_constructor_PackedInt32Array>` **(** **)** |
  24. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`PackedInt32Array<class_PackedInt32Array_constructor_PackedInt32Array>` **(** :ref:`PackedInt32Array<class_PackedInt32Array>` from **)** |
  26. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`PackedInt32Array<class_PackedInt32Array_constructor_PackedInt32Array>` **(** :ref:`Array<class_Array>` from **)** |
  28. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  29. .. rst-class:: classref-reftable-group
  30. Methods
  31. -------
  32. .. table::
  33. :widths: auto
  34. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`bool<class_bool>` | :ref:`append<class_PackedInt32Array_method_append>` **(** :ref:`int<class_int>` value **)** |
  36. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  37. | void | :ref:`append_array<class_PackedInt32Array_method_append_array>` **(** :ref:`PackedInt32Array<class_PackedInt32Array>` array **)** |
  38. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedInt32Array_method_bsearch>` **(** :ref:`int<class_int>` value, :ref:`bool<class_bool>` before=true **)** |
  40. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  41. | void | :ref:`clear<class_PackedInt32Array_method_clear>` **(** **)** |
  42. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`int<class_int>` | :ref:`count<class_PackedInt32Array_method_count>` **(** :ref:`int<class_int>` value **)** |const| |
  44. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`duplicate<class_PackedInt32Array_method_duplicate>` **(** **)** |
  46. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  47. | void | :ref:`fill<class_PackedInt32Array_method_fill>` **(** :ref:`int<class_int>` value **)** |
  48. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`int<class_int>` | :ref:`find<class_PackedInt32Array_method_find>` **(** :ref:`int<class_int>` value, :ref:`int<class_int>` from=0 **)** |const| |
  50. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`bool<class_bool>` | :ref:`has<class_PackedInt32Array_method_has>` **(** :ref:`int<class_int>` value **)** |const| |
  52. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`int<class_int>` | :ref:`insert<class_PackedInt32Array_method_insert>` **(** :ref:`int<class_int>` at_index, :ref:`int<class_int>` value **)** |
  54. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedInt32Array_method_is_empty>` **(** **)** |const| |
  56. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedInt32Array_method_push_back>` **(** :ref:`int<class_int>` value **)** |
  58. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  59. | void | :ref:`remove_at<class_PackedInt32Array_method_remove_at>` **(** :ref:`int<class_int>` index **)** |
  60. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`int<class_int>` | :ref:`resize<class_PackedInt32Array_method_resize>` **(** :ref:`int<class_int>` new_size **)** |
  62. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  63. | void | :ref:`reverse<class_PackedInt32Array_method_reverse>` **(** **)** |
  64. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`int<class_int>` | :ref:`rfind<class_PackedInt32Array_method_rfind>` **(** :ref:`int<class_int>` value, :ref:`int<class_int>` from=-1 **)** |const| |
  66. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  67. | void | :ref:`set<class_PackedInt32Array_method_set>` **(** :ref:`int<class_int>` index, :ref:`int<class_int>` value **)** |
  68. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`int<class_int>` | :ref:`size<class_PackedInt32Array_method_size>` **(** **)** |const| |
  70. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`slice<class_PackedInt32Array_method_slice>` **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const| |
  72. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  73. | void | :ref:`sort<class_PackedInt32Array_method_sort>` **(** **)** |
  74. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedInt32Array_method_to_byte_array>` **(** **)** |const| |
  76. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  77. .. rst-class:: classref-reftable-group
  78. Operators
  79. ---------
  80. .. table::
  81. :widths: auto
  82. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedInt32Array_operator_neq_PackedInt32Array>` **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)** |
  84. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`PackedInt32Array<class_PackedInt32Array>` | :ref:`operator +<class_PackedInt32Array_operator_sum_PackedInt32Array>` **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)** |
  86. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedInt32Array_operator_eq_PackedInt32Array>` **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)** |
  88. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`int<class_int>` | :ref:`operator []<class_PackedInt32Array_operator_idx_int>` **(** :ref:`int<class_int>` index **)** |
  90. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  91. .. rst-class:: classref-section-separator
  92. ----
  93. .. rst-class:: classref-descriptions-group
  94. Constructor Descriptions
  95. ------------------------
  96. .. _class_PackedInt32Array_constructor_PackedInt32Array:
  97. .. rst-class:: classref-constructor
  98. :ref:`PackedInt32Array<class_PackedInt32Array>` **PackedInt32Array** **(** **)**
  99. Constructs an empty **PackedInt32Array**.
  100. .. rst-class:: classref-item-separator
  101. ----
  102. .. rst-class:: classref-constructor
  103. :ref:`PackedInt32Array<class_PackedInt32Array>` **PackedInt32Array** **(** :ref:`PackedInt32Array<class_PackedInt32Array>` from **)**
  104. Constructs a **PackedInt32Array** as a copy of the given **PackedInt32Array**.
  105. .. rst-class:: classref-item-separator
  106. ----
  107. .. rst-class:: classref-constructor
  108. :ref:`PackedInt32Array<class_PackedInt32Array>` **PackedInt32Array** **(** :ref:`Array<class_Array>` from **)**
  109. Constructs a new **PackedInt32Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  110. .. rst-class:: classref-section-separator
  111. ----
  112. .. rst-class:: classref-descriptions-group
  113. Method Descriptions
  114. -------------------
  115. .. _class_PackedInt32Array_method_append:
  116. .. rst-class:: classref-method
  117. :ref:`bool<class_bool>` **append** **(** :ref:`int<class_int>` value **)**
  118. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedInt32Array_method_push_back>`).
  119. .. rst-class:: classref-item-separator
  120. ----
  121. .. _class_PackedInt32Array_method_append_array:
  122. .. rst-class:: classref-method
  123. void **append_array** **(** :ref:`PackedInt32Array<class_PackedInt32Array>` array **)**
  124. Appends a **PackedInt32Array** at the end of this array.
  125. .. rst-class:: classref-item-separator
  126. ----
  127. .. _class_PackedInt32Array_method_bsearch:
  128. .. rst-class:: classref-method
  129. :ref:`int<class_int>` **bsearch** **(** :ref:`int<class_int>` value, :ref:`bool<class_bool>` before=true **)**
  130. 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.
  131. \ **Note:** Calling :ref:`bsearch<class_PackedInt32Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  132. .. rst-class:: classref-item-separator
  133. ----
  134. .. _class_PackedInt32Array_method_clear:
  135. .. rst-class:: classref-method
  136. void **clear** **(** **)**
  137. Clears the array. This is equivalent to using :ref:`resize<class_PackedInt32Array_method_resize>` with a size of ``0``.
  138. .. rst-class:: classref-item-separator
  139. ----
  140. .. _class_PackedInt32Array_method_count:
  141. .. rst-class:: classref-method
  142. :ref:`int<class_int>` **count** **(** :ref:`int<class_int>` value **)** |const|
  143. Returns the number of times an element is in the array.
  144. .. rst-class:: classref-item-separator
  145. ----
  146. .. _class_PackedInt32Array_method_duplicate:
  147. .. rst-class:: classref-method
  148. :ref:`PackedInt32Array<class_PackedInt32Array>` **duplicate** **(** **)**
  149. Creates a copy of the array, and returns it.
  150. .. rst-class:: classref-item-separator
  151. ----
  152. .. _class_PackedInt32Array_method_fill:
  153. .. rst-class:: classref-method
  154. void **fill** **(** :ref:`int<class_int>` value **)**
  155. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedInt32Array_method_resize>` to create an array with a given size and initialized elements.
  156. .. rst-class:: classref-item-separator
  157. ----
  158. .. _class_PackedInt32Array_method_find:
  159. .. rst-class:: classref-method
  160. :ref:`int<class_int>` **find** **(** :ref:`int<class_int>` value, :ref:`int<class_int>` from=0 **)** |const|
  161. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  162. .. rst-class:: classref-item-separator
  163. ----
  164. .. _class_PackedInt32Array_method_has:
  165. .. rst-class:: classref-method
  166. :ref:`bool<class_bool>` **has** **(** :ref:`int<class_int>` value **)** |const|
  167. Returns ``true`` if the array contains ``value``.
  168. .. rst-class:: classref-item-separator
  169. ----
  170. .. _class_PackedInt32Array_method_insert:
  171. .. rst-class:: classref-method
  172. :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` at_index, :ref:`int<class_int>` value **)**
  173. Inserts a new integer at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
  174. .. rst-class:: classref-item-separator
  175. ----
  176. .. _class_PackedInt32Array_method_is_empty:
  177. .. rst-class:: classref-method
  178. :ref:`bool<class_bool>` **is_empty** **(** **)** |const|
  179. Returns ``true`` if the array is empty.
  180. .. rst-class:: classref-item-separator
  181. ----
  182. .. _class_PackedInt32Array_method_push_back:
  183. .. rst-class:: classref-method
  184. :ref:`bool<class_bool>` **push_back** **(** :ref:`int<class_int>` value **)**
  185. Appends a value to the array.
  186. .. rst-class:: classref-item-separator
  187. ----
  188. .. _class_PackedInt32Array_method_remove_at:
  189. .. rst-class:: classref-method
  190. void **remove_at** **(** :ref:`int<class_int>` index **)**
  191. Removes an element from the array by index.
  192. .. rst-class:: classref-item-separator
  193. ----
  194. .. _class_PackedInt32Array_method_resize:
  195. .. rst-class:: classref-method
  196. :ref:`int<class_int>` **resize** **(** :ref:`int<class_int>` new_size **)**
  197. 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.
  198. .. rst-class:: classref-item-separator
  199. ----
  200. .. _class_PackedInt32Array_method_reverse:
  201. .. rst-class:: classref-method
  202. void **reverse** **(** **)**
  203. Reverses the order of the elements in the array.
  204. .. rst-class:: classref-item-separator
  205. ----
  206. .. _class_PackedInt32Array_method_rfind:
  207. .. rst-class:: classref-method
  208. :ref:`int<class_int>` **rfind** **(** :ref:`int<class_int>` value, :ref:`int<class_int>` from=-1 **)** |const|
  209. 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.
  210. .. rst-class:: classref-item-separator
  211. ----
  212. .. _class_PackedInt32Array_method_set:
  213. .. rst-class:: classref-method
  214. void **set** **(** :ref:`int<class_int>` index, :ref:`int<class_int>` value **)**
  215. Changes the integer at the given index.
  216. .. rst-class:: classref-item-separator
  217. ----
  218. .. _class_PackedInt32Array_method_size:
  219. .. rst-class:: classref-method
  220. :ref:`int<class_int>` **size** **(** **)** |const|
  221. Returns the number of elements in the array.
  222. .. rst-class:: classref-item-separator
  223. ----
  224. .. _class_PackedInt32Array_method_slice:
  225. .. rst-class:: classref-method
  226. :ref:`PackedInt32Array<class_PackedInt32Array>` **slice** **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const|
  227. Returns the slice of the **PackedInt32Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedInt32Array**.
  228. 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())``).
  229. 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)``).
  230. .. rst-class:: classref-item-separator
  231. ----
  232. .. _class_PackedInt32Array_method_sort:
  233. .. rst-class:: classref-method
  234. void **sort** **(** **)**
  235. Sorts the elements of the array in ascending order.
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_PackedInt32Array_method_to_byte_array:
  239. .. rst-class:: classref-method
  240. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array** **(** **)** |const|
  241. Returns a copy of the data converted to a :ref:`PackedByteArray<class_PackedByteArray>`, where each element have been encoded as 4 bytes.
  242. The size of the new array will be ``int32_array.size() * 4``.
  243. .. rst-class:: classref-section-separator
  244. ----
  245. .. rst-class:: classref-descriptions-group
  246. Operator Descriptions
  247. ---------------------
  248. .. _class_PackedInt32Array_operator_neq_PackedInt32Array:
  249. .. rst-class:: classref-operator
  250. :ref:`bool<class_bool>` **operator !=** **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)**
  251. Returns ``true`` if contents of the arrays differ.
  252. .. rst-class:: classref-item-separator
  253. ----
  254. .. _class_PackedInt32Array_operator_sum_PackedInt32Array:
  255. .. rst-class:: classref-operator
  256. :ref:`PackedInt32Array<class_PackedInt32Array>` **operator +** **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)**
  257. Returns a new **PackedInt32Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedInt32Array_method_append_array>` instead.
  258. .. rst-class:: classref-item-separator
  259. ----
  260. .. _class_PackedInt32Array_operator_eq_PackedInt32Array:
  261. .. rst-class:: classref-operator
  262. :ref:`bool<class_bool>` **operator ==** **(** :ref:`PackedInt32Array<class_PackedInt32Array>` right **)**
  263. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal ints at the corresponding indices.
  264. .. rst-class:: classref-item-separator
  265. ----
  266. .. _class_PackedInt32Array_operator_idx_int:
  267. .. rst-class:: classref-operator
  268. :ref:`int<class_int>` **operator []** **(** :ref:`int<class_int>` index **)**
  269. Returns the :ref:`int<class_int>` 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.
  270. Note that :ref:`int<class_int>` type is 64-bit, unlike the values stored in the array.
  271. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  272. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  273. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  274. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  275. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  276. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  277. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`