class_packedint64array.rst 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  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/PackedInt64Array.xml.
  6. .. _class_PackedInt64Array:
  7. PackedInt64Array
  8. ================
  9. A packed array of 64-bit integers.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold 64-bit integer values. Packs data tightly, so it saves memory for large array sizes.
  14. \ **Note:** This type stores signed 64-bit integers, which means it can take values in the interval ``[-2^63, 2^63 - 1]``, i.e. ``[-9223372036854775808, 9223372036854775807]``. Exceeding those bounds will wrap around. If you only need to pack 32-bit integers tightly, see :ref:`PackedInt32Array<class_PackedInt32Array>` for a more memory-friendly alternative.
  15. \ **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. **PackedInt64Array** versus ``Array[int]``). 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.
  16. \ **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_PackedInt64Array_method_duplicate>`. This is *not* the case for built-in properties and methods. In these cases the returned packed array is a copy, and changing it will *not* affect the original value. To update a built-in property of this type, modify the returned array and then assign it to the property again.
  17. .. note::
  18. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  19. .. rst-class:: classref-reftable-group
  20. Constructors
  21. ------------
  22. .. table::
  23. :widths: auto
  24. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`PackedInt64Array<class_PackedInt64Array_constructor_PackedInt64Array>`\ (\ ) |
  26. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`PackedInt64Array<class_PackedInt64Array_constructor_PackedInt64Array>`\ (\ from\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) |
  28. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  29. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`PackedInt64Array<class_PackedInt64Array_constructor_PackedInt64Array>`\ (\ from\: :ref:`Array<class_Array>`\ ) |
  30. +-------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  31. .. rst-class:: classref-reftable-group
  32. Methods
  33. -------
  34. .. table::
  35. :widths: auto
  36. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  37. | :ref:`bool<class_bool>` | :ref:`append<class_PackedInt64Array_method_append>`\ (\ value\: :ref:`int<class_int>`\ ) |
  38. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  39. | |void| | :ref:`append_array<class_PackedInt64Array_method_append_array>`\ (\ array\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) |
  40. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  41. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedInt64Array_method_bsearch>`\ (\ value\: :ref:`int<class_int>`, before\: :ref:`bool<class_bool>` = true\ ) |
  42. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  43. | |void| | :ref:`clear<class_PackedInt64Array_method_clear>`\ (\ ) |
  44. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`int<class_int>` | :ref:`count<class_PackedInt64Array_method_count>`\ (\ value\: :ref:`int<class_int>`\ ) |const| |
  46. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`duplicate<class_PackedInt64Array_method_duplicate>`\ (\ ) |
  48. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`bool<class_bool>` | :ref:`erase<class_PackedInt64Array_method_erase>`\ (\ value\: :ref:`int<class_int>`\ ) |
  50. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  51. | |void| | :ref:`fill<class_PackedInt64Array_method_fill>`\ (\ value\: :ref:`int<class_int>`\ ) |
  52. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`int<class_int>` | :ref:`find<class_PackedInt64Array_method_find>`\ (\ value\: :ref:`int<class_int>`, from\: :ref:`int<class_int>` = 0\ ) |const| |
  54. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`get<class_PackedInt64Array_method_get>`\ (\ index\: :ref:`int<class_int>`\ ) |const| |
  56. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`has<class_PackedInt64Array_method_has>`\ (\ value\: :ref:`int<class_int>`\ ) |const| |
  58. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`int<class_int>` | :ref:`insert<class_PackedInt64Array_method_insert>`\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`int<class_int>`\ ) |
  60. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedInt64Array_method_is_empty>`\ (\ ) |const| |
  62. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedInt64Array_method_push_back>`\ (\ value\: :ref:`int<class_int>`\ ) |
  64. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  65. | |void| | :ref:`remove_at<class_PackedInt64Array_method_remove_at>`\ (\ index\: :ref:`int<class_int>`\ ) |
  66. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`resize<class_PackedInt64Array_method_resize>`\ (\ new_size\: :ref:`int<class_int>`\ ) |
  68. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  69. | |void| | :ref:`reverse<class_PackedInt64Array_method_reverse>`\ (\ ) |
  70. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`int<class_int>` | :ref:`rfind<class_PackedInt64Array_method_rfind>`\ (\ value\: :ref:`int<class_int>`, from\: :ref:`int<class_int>` = -1\ ) |const| |
  72. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  73. | |void| | :ref:`set<class_PackedInt64Array_method_set>`\ (\ index\: :ref:`int<class_int>`, value\: :ref:`int<class_int>`\ ) |
  74. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`int<class_int>` | :ref:`size<class_PackedInt64Array_method_size>`\ (\ ) |const| |
  76. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`slice<class_PackedInt64Array_method_slice>`\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| |
  78. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  79. | |void| | :ref:`sort<class_PackedInt64Array_method_sort>`\ (\ ) |
  80. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedInt64Array_method_to_byte_array>`\ (\ ) |const| |
  82. +-------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------+
  83. .. rst-class:: classref-reftable-group
  84. Operators
  85. ---------
  86. .. table::
  87. :widths: auto
  88. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedInt64Array_operator_neq_PackedInt64Array>`\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) |
  90. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`PackedInt64Array<class_PackedInt64Array>` | :ref:`operator +<class_PackedInt64Array_operator_sum_PackedInt64Array>`\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) |
  92. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedInt64Array_operator_eq_PackedInt64Array>`\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) |
  94. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`int<class_int>` | :ref:`operator []<class_PackedInt64Array_operator_idx_int>`\ (\ index\: :ref:`int<class_int>`\ ) |
  96. +-------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  97. .. rst-class:: classref-section-separator
  98. ----
  99. .. rst-class:: classref-descriptions-group
  100. Constructor Descriptions
  101. ------------------------
  102. .. _class_PackedInt64Array_constructor_PackedInt64Array:
  103. .. rst-class:: classref-constructor
  104. :ref:`PackedInt64Array<class_PackedInt64Array>` **PackedInt64Array**\ (\ ) :ref:`🔗<class_PackedInt64Array_constructor_PackedInt64Array>`
  105. Constructs an empty **PackedInt64Array**.
  106. .. rst-class:: classref-item-separator
  107. ----
  108. .. rst-class:: classref-constructor
  109. :ref:`PackedInt64Array<class_PackedInt64Array>` **PackedInt64Array**\ (\ from\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ )
  110. Constructs a **PackedInt64Array** as a copy of the given **PackedInt64Array**.
  111. .. rst-class:: classref-item-separator
  112. ----
  113. .. rst-class:: classref-constructor
  114. :ref:`PackedInt64Array<class_PackedInt64Array>` **PackedInt64Array**\ (\ from\: :ref:`Array<class_Array>`\ )
  115. Constructs a new **PackedInt64Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  116. .. rst-class:: classref-section-separator
  117. ----
  118. .. rst-class:: classref-descriptions-group
  119. Method Descriptions
  120. -------------------
  121. .. _class_PackedInt64Array_method_append:
  122. .. rst-class:: classref-method
  123. :ref:`bool<class_bool>` **append**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_append>`
  124. Appends an element at the end of the array (alias of :ref:`push_back()<class_PackedInt64Array_method_push_back>`).
  125. .. rst-class:: classref-item-separator
  126. ----
  127. .. _class_PackedInt64Array_method_append_array:
  128. .. rst-class:: classref-method
  129. |void| **append_array**\ (\ array\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) :ref:`🔗<class_PackedInt64Array_method_append_array>`
  130. Appends a **PackedInt64Array** at the end of this array.
  131. .. rst-class:: classref-item-separator
  132. ----
  133. .. _class_PackedInt64Array_method_bsearch:
  134. .. rst-class:: classref-method
  135. :ref:`int<class_int>` **bsearch**\ (\ value\: :ref:`int<class_int>`, before\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_PackedInt64Array_method_bsearch>`
  136. 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.
  137. \ **Note:** Calling :ref:`bsearch()<class_PackedInt64Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  138. .. rst-class:: classref-item-separator
  139. ----
  140. .. _class_PackedInt64Array_method_clear:
  141. .. rst-class:: classref-method
  142. |void| **clear**\ (\ ) :ref:`🔗<class_PackedInt64Array_method_clear>`
  143. Clears the array. This is equivalent to using :ref:`resize()<class_PackedInt64Array_method_resize>` with a size of ``0``.
  144. .. rst-class:: classref-item-separator
  145. ----
  146. .. _class_PackedInt64Array_method_count:
  147. .. rst-class:: classref-method
  148. :ref:`int<class_int>` **count**\ (\ value\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_PackedInt64Array_method_count>`
  149. Returns the number of times an element is in the array.
  150. .. rst-class:: classref-item-separator
  151. ----
  152. .. _class_PackedInt64Array_method_duplicate:
  153. .. rst-class:: classref-method
  154. :ref:`PackedInt64Array<class_PackedInt64Array>` **duplicate**\ (\ ) :ref:`🔗<class_PackedInt64Array_method_duplicate>`
  155. Creates a copy of the array, and returns it.
  156. .. rst-class:: classref-item-separator
  157. ----
  158. .. _class_PackedInt64Array_method_erase:
  159. .. rst-class:: classref-method
  160. :ref:`bool<class_bool>` **erase**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_erase>`
  161. Removes the first occurrence of a value from the array and returns ``true``. If the value does not exist in the array, nothing happens and ``false`` is returned. To remove an element by index, use :ref:`remove_at()<class_PackedInt64Array_method_remove_at>` instead.
  162. .. rst-class:: classref-item-separator
  163. ----
  164. .. _class_PackedInt64Array_method_fill:
  165. .. rst-class:: classref-method
  166. |void| **fill**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_fill>`
  167. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize()<class_PackedInt64Array_method_resize>` to create an array with a given size and initialized elements.
  168. .. rst-class:: classref-item-separator
  169. ----
  170. .. _class_PackedInt64Array_method_find:
  171. .. rst-class:: classref-method
  172. :ref:`int<class_int>` **find**\ (\ value\: :ref:`int<class_int>`, from\: :ref:`int<class_int>` = 0\ ) |const| :ref:`🔗<class_PackedInt64Array_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_PackedInt64Array_method_get:
  177. .. rst-class:: classref-method
  178. :ref:`int<class_int>` **get**\ (\ index\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_PackedInt64Array_method_get>`
  179. Returns the 64-bit integer at the given ``index`` in the array. If ``index`` out-of-bounds or negative, this method fails and returns ``0``.
  180. This method is similar (but not identical) to the ``[]`` operator. Most notably, when this method fails, it doesn't pause project execution if run from the editor.
  181. .. rst-class:: classref-item-separator
  182. ----
  183. .. _class_PackedInt64Array_method_has:
  184. .. rst-class:: classref-method
  185. :ref:`bool<class_bool>` **has**\ (\ value\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_PackedInt64Array_method_has>`
  186. Returns ``true`` if the array contains ``value``.
  187. .. rst-class:: classref-item-separator
  188. ----
  189. .. _class_PackedInt64Array_method_insert:
  190. .. rst-class:: classref-method
  191. :ref:`int<class_int>` **insert**\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_insert>`
  192. 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()``).
  193. .. rst-class:: classref-item-separator
  194. ----
  195. .. _class_PackedInt64Array_method_is_empty:
  196. .. rst-class:: classref-method
  197. :ref:`bool<class_bool>` **is_empty**\ (\ ) |const| :ref:`🔗<class_PackedInt64Array_method_is_empty>`
  198. Returns ``true`` if the array is empty.
  199. .. rst-class:: classref-item-separator
  200. ----
  201. .. _class_PackedInt64Array_method_push_back:
  202. .. rst-class:: classref-method
  203. :ref:`bool<class_bool>` **push_back**\ (\ value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_push_back>`
  204. Appends a value to the array.
  205. .. rst-class:: classref-item-separator
  206. ----
  207. .. _class_PackedInt64Array_method_remove_at:
  208. .. rst-class:: classref-method
  209. |void| **remove_at**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_remove_at>`
  210. Removes an element from the array by index.
  211. .. rst-class:: classref-item-separator
  212. ----
  213. .. _class_PackedInt64Array_method_resize:
  214. .. rst-class:: classref-method
  215. :ref:`int<class_int>` **resize**\ (\ new_size\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_resize>`
  216. 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_PackedInt64Array_method_resize>` once and assigning the new values is faster than adding new elements one by one.
  217. Returns :ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success, or one of the following :ref:`Error<enum_@GlobalScope_Error>` constants if this method fails: :ref:`@GlobalScope.ERR_INVALID_PARAMETER<class_@GlobalScope_constant_ERR_INVALID_PARAMETER>` if the size is negative, or :ref:`@GlobalScope.ERR_OUT_OF_MEMORY<class_@GlobalScope_constant_ERR_OUT_OF_MEMORY>` if allocations fail. Use :ref:`size()<class_PackedInt64Array_method_size>` to find the actual size of the array after resize.
  218. .. rst-class:: classref-item-separator
  219. ----
  220. .. _class_PackedInt64Array_method_reverse:
  221. .. rst-class:: classref-method
  222. |void| **reverse**\ (\ ) :ref:`🔗<class_PackedInt64Array_method_reverse>`
  223. Reverses the order of the elements in the array.
  224. .. rst-class:: classref-item-separator
  225. ----
  226. .. _class_PackedInt64Array_method_rfind:
  227. .. rst-class:: classref-method
  228. :ref:`int<class_int>` **rfind**\ (\ value\: :ref:`int<class_int>`, from\: :ref:`int<class_int>` = -1\ ) |const| :ref:`🔗<class_PackedInt64Array_method_rfind>`
  229. 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.
  230. .. rst-class:: classref-item-separator
  231. ----
  232. .. _class_PackedInt64Array_method_set:
  233. .. rst-class:: classref-method
  234. |void| **set**\ (\ index\: :ref:`int<class_int>`, value\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_method_set>`
  235. Changes the integer at the given index.
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_PackedInt64Array_method_size:
  239. .. rst-class:: classref-method
  240. :ref:`int<class_int>` **size**\ (\ ) |const| :ref:`🔗<class_PackedInt64Array_method_size>`
  241. Returns the number of elements in the array.
  242. .. rst-class:: classref-item-separator
  243. ----
  244. .. _class_PackedInt64Array_method_slice:
  245. .. rst-class:: classref-method
  246. :ref:`PackedInt64Array<class_PackedInt64Array>` **slice**\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| :ref:`🔗<class_PackedInt64Array_method_slice>`
  247. Returns the slice of the **PackedInt64Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedInt64Array**.
  248. 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())``).
  249. 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)``).
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_PackedInt64Array_method_sort:
  253. .. rst-class:: classref-method
  254. |void| **sort**\ (\ ) :ref:`🔗<class_PackedInt64Array_method_sort>`
  255. Sorts the elements of the array in ascending order.
  256. .. rst-class:: classref-item-separator
  257. ----
  258. .. _class_PackedInt64Array_method_to_byte_array:
  259. .. rst-class:: classref-method
  260. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array**\ (\ ) |const| :ref:`🔗<class_PackedInt64Array_method_to_byte_array>`
  261. Returns a copy of the data converted to a :ref:`PackedByteArray<class_PackedByteArray>`, where each element has been encoded as 8 bytes.
  262. The size of the new array will be ``int64_array.size() * 8``.
  263. .. rst-class:: classref-section-separator
  264. ----
  265. .. rst-class:: classref-descriptions-group
  266. Operator Descriptions
  267. ---------------------
  268. .. _class_PackedInt64Array_operator_neq_PackedInt64Array:
  269. .. rst-class:: classref-operator
  270. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) :ref:`🔗<class_PackedInt64Array_operator_neq_PackedInt64Array>`
  271. Returns ``true`` if contents of the arrays differ.
  272. .. rst-class:: classref-item-separator
  273. ----
  274. .. _class_PackedInt64Array_operator_sum_PackedInt64Array:
  275. .. rst-class:: classref-operator
  276. :ref:`PackedInt64Array<class_PackedInt64Array>` **operator +**\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) :ref:`🔗<class_PackedInt64Array_operator_sum_PackedInt64Array>`
  277. Returns a new **PackedInt64Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array()<class_PackedInt64Array_method_append_array>` instead.
  278. .. rst-class:: classref-item-separator
  279. ----
  280. .. _class_PackedInt64Array_operator_eq_PackedInt64Array:
  281. .. rst-class:: classref-operator
  282. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`PackedInt64Array<class_PackedInt64Array>`\ ) :ref:`🔗<class_PackedInt64Array_operator_eq_PackedInt64Array>`
  283. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal ints at the corresponding indices.
  284. .. rst-class:: classref-item-separator
  285. ----
  286. .. _class_PackedInt64Array_operator_idx_int:
  287. .. rst-class:: classref-operator
  288. :ref:`int<class_int>` **operator []**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedInt64Array_operator_idx_int>`
  289. 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.
  290. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  291. .. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`
  292. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  293. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  294. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  295. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  296. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  297. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  298. .. |void| replace:: :abbr:`void (No return value.)`