class_packedvector4array.rst 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  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/PackedVector4Array.xml.
  6. .. _class_PackedVector4Array:
  7. PackedVector4Array
  8. ==================
  9. A packed array of :ref:`Vector4<class_Vector4>`\ s.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold :ref:`Vector4<class_Vector4>`. Packs data tightly, so it saves memory for large array sizes.
  14. \ **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_PackedVector4Array_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.
  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:`PackedVector4Array<class_PackedVector4Array>` | :ref:`PackedVector4Array<class_PackedVector4Array_constructor_PackedVector4Array>`\ (\ ) |
  24. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`PackedVector4Array<class_PackedVector4Array>` | :ref:`PackedVector4Array<class_PackedVector4Array_constructor_PackedVector4Array>`\ (\ from\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) |
  26. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`PackedVector4Array<class_PackedVector4Array>` | :ref:`PackedVector4Array<class_PackedVector4Array_constructor_PackedVector4Array>`\ (\ from\: :ref:`Array<class_Array>`\ ) |
  28. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  29. .. rst-class:: classref-reftable-group
  30. Methods
  31. -------
  32. .. table::
  33. :widths: auto
  34. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  35. | :ref:`bool<class_bool>` | :ref:`append<class_PackedVector4Array_method_append>`\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |
  36. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  37. | |void| | :ref:`append_array<class_PackedVector4Array_method_append_array>`\ (\ array\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) |
  38. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  39. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedVector4Array_method_bsearch>`\ (\ value\: :ref:`Vector4<class_Vector4>`, before\: :ref:`bool<class_bool>` = true\ ) |
  40. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  41. | |void| | :ref:`clear<class_PackedVector4Array_method_clear>`\ (\ ) |
  42. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`int<class_int>` | :ref:`count<class_PackedVector4Array_method_count>`\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |const| |
  44. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`PackedVector4Array<class_PackedVector4Array>` | :ref:`duplicate<class_PackedVector4Array_method_duplicate>`\ (\ ) |
  46. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  47. | |void| | :ref:`fill<class_PackedVector4Array_method_fill>`\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |
  48. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  49. | :ref:`int<class_int>` | :ref:`find<class_PackedVector4Array_method_find>`\ (\ value\: :ref:`Vector4<class_Vector4>`, from\: :ref:`int<class_int>` = 0\ ) |const| |
  50. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  51. | :ref:`Vector4<class_Vector4>` | :ref:`get<class_PackedVector4Array_method_get>`\ (\ index\: :ref:`int<class_int>`\ ) |const| |
  52. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  53. | :ref:`bool<class_bool>` | :ref:`has<class_PackedVector4Array_method_has>`\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |const| |
  54. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`int<class_int>` | :ref:`insert<class_PackedVector4Array_method_insert>`\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`Vector4<class_Vector4>`\ ) |
  56. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedVector4Array_method_is_empty>`\ (\ ) |const| |
  58. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedVector4Array_method_push_back>`\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |
  60. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  61. | |void| | :ref:`remove_at<class_PackedVector4Array_method_remove_at>`\ (\ index\: :ref:`int<class_int>`\ ) |
  62. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`int<class_int>` | :ref:`resize<class_PackedVector4Array_method_resize>`\ (\ new_size\: :ref:`int<class_int>`\ ) |
  64. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  65. | |void| | :ref:`reverse<class_PackedVector4Array_method_reverse>`\ (\ ) |
  66. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`rfind<class_PackedVector4Array_method_rfind>`\ (\ value\: :ref:`Vector4<class_Vector4>`, from\: :ref:`int<class_int>` = -1\ ) |const| |
  68. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  69. | |void| | :ref:`set<class_PackedVector4Array_method_set>`\ (\ index\: :ref:`int<class_int>`, value\: :ref:`Vector4<class_Vector4>`\ ) |
  70. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`int<class_int>` | :ref:`size<class_PackedVector4Array_method_size>`\ (\ ) |const| |
  72. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`PackedVector4Array<class_PackedVector4Array>` | :ref:`slice<class_PackedVector4Array_method_slice>`\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| |
  74. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  75. | |void| | :ref:`sort<class_PackedVector4Array_method_sort>`\ (\ ) |
  76. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedVector4Array_method_to_byte_array>`\ (\ ) |const| |
  78. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+
  79. .. rst-class:: classref-reftable-group
  80. Operators
  81. ---------
  82. .. table::
  83. :widths: auto
  84. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedVector4Array_operator_neq_PackedVector4Array>`\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) |
  86. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`PackedVector4Array<class_PackedVector4Array>` | :ref:`operator +<class_PackedVector4Array_operator_sum_PackedVector4Array>`\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) |
  88. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedVector4Array_operator_eq_PackedVector4Array>`\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) |
  90. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`Vector4<class_Vector4>` | :ref:`operator []<class_PackedVector4Array_operator_idx_int>`\ (\ index\: :ref:`int<class_int>`\ ) |
  92. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  93. .. rst-class:: classref-section-separator
  94. ----
  95. .. rst-class:: classref-descriptions-group
  96. Constructor Descriptions
  97. ------------------------
  98. .. _class_PackedVector4Array_constructor_PackedVector4Array:
  99. .. rst-class:: classref-constructor
  100. :ref:`PackedVector4Array<class_PackedVector4Array>` **PackedVector4Array**\ (\ ) :ref:`🔗<class_PackedVector4Array_constructor_PackedVector4Array>`
  101. Constructs an empty **PackedVector4Array**.
  102. .. rst-class:: classref-item-separator
  103. ----
  104. .. rst-class:: classref-constructor
  105. :ref:`PackedVector4Array<class_PackedVector4Array>` **PackedVector4Array**\ (\ from\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ )
  106. Constructs a **PackedVector4Array** as a copy of the given **PackedVector4Array**.
  107. .. rst-class:: classref-item-separator
  108. ----
  109. .. rst-class:: classref-constructor
  110. :ref:`PackedVector4Array<class_PackedVector4Array>` **PackedVector4Array**\ (\ from\: :ref:`Array<class_Array>`\ )
  111. Constructs a new **PackedVector4Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  112. \ **Note:** When initializing a **PackedVector4Array** with elements, it must be initialized with an :ref:`Array<class_Array>` of :ref:`Vector4<class_Vector4>` values:
  113. ::
  114. var array = PackedVector4Array([Vector4(12, 34, 56, 78), Vector4(90, 12, 34, 56)])
  115. .. rst-class:: classref-section-separator
  116. ----
  117. .. rst-class:: classref-descriptions-group
  118. Method Descriptions
  119. -------------------
  120. .. _class_PackedVector4Array_method_append:
  121. .. rst-class:: classref-method
  122. :ref:`bool<class_bool>` **append**\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) :ref:`🔗<class_PackedVector4Array_method_append>`
  123. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedVector4Array_method_push_back>`).
  124. .. rst-class:: classref-item-separator
  125. ----
  126. .. _class_PackedVector4Array_method_append_array:
  127. .. rst-class:: classref-method
  128. |void| **append_array**\ (\ array\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) :ref:`🔗<class_PackedVector4Array_method_append_array>`
  129. Appends a **PackedVector4Array** at the end of this array.
  130. .. rst-class:: classref-item-separator
  131. ----
  132. .. _class_PackedVector4Array_method_bsearch:
  133. .. rst-class:: classref-method
  134. :ref:`int<class_int>` **bsearch**\ (\ value\: :ref:`Vector4<class_Vector4>`, before\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_PackedVector4Array_method_bsearch>`
  135. 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.
  136. \ **Note:** Calling :ref:`bsearch<class_PackedVector4Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  137. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  138. .. rst-class:: classref-item-separator
  139. ----
  140. .. _class_PackedVector4Array_method_clear:
  141. .. rst-class:: classref-method
  142. |void| **clear**\ (\ ) :ref:`🔗<class_PackedVector4Array_method_clear>`
  143. Clears the array. This is equivalent to using :ref:`resize<class_PackedVector4Array_method_resize>` with a size of ``0``.
  144. .. rst-class:: classref-item-separator
  145. ----
  146. .. _class_PackedVector4Array_method_count:
  147. .. rst-class:: classref-method
  148. :ref:`int<class_int>` **count**\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |const| :ref:`🔗<class_PackedVector4Array_method_count>`
  149. Returns the number of times an element is in the array.
  150. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  151. .. rst-class:: classref-item-separator
  152. ----
  153. .. _class_PackedVector4Array_method_duplicate:
  154. .. rst-class:: classref-method
  155. :ref:`PackedVector4Array<class_PackedVector4Array>` **duplicate**\ (\ ) :ref:`🔗<class_PackedVector4Array_method_duplicate>`
  156. Creates a copy of the array, and returns it.
  157. .. rst-class:: classref-item-separator
  158. ----
  159. .. _class_PackedVector4Array_method_fill:
  160. .. rst-class:: classref-method
  161. |void| **fill**\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) :ref:`🔗<class_PackedVector4Array_method_fill>`
  162. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedVector4Array_method_resize>` to create an array with a given size and initialized elements.
  163. .. rst-class:: classref-item-separator
  164. ----
  165. .. _class_PackedVector4Array_method_find:
  166. .. rst-class:: classref-method
  167. :ref:`int<class_int>` **find**\ (\ value\: :ref:`Vector4<class_Vector4>`, from\: :ref:`int<class_int>` = 0\ ) |const| :ref:`🔗<class_PackedVector4Array_method_find>`
  168. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  169. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  170. .. rst-class:: classref-item-separator
  171. ----
  172. .. _class_PackedVector4Array_method_get:
  173. .. rst-class:: classref-method
  174. :ref:`Vector4<class_Vector4>` **get**\ (\ index\: :ref:`int<class_int>`\ ) |const| :ref:`🔗<class_PackedVector4Array_method_get>`
  175. Returns the :ref:`Vector4<class_Vector4>` at the given ``index`` in the array. This is the same as using the ``[]`` operator (``array[index]``).
  176. .. rst-class:: classref-item-separator
  177. ----
  178. .. _class_PackedVector4Array_method_has:
  179. .. rst-class:: classref-method
  180. :ref:`bool<class_bool>` **has**\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) |const| :ref:`🔗<class_PackedVector4Array_method_has>`
  181. Returns ``true`` if the array contains ``value``.
  182. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  183. .. rst-class:: classref-item-separator
  184. ----
  185. .. _class_PackedVector4Array_method_insert:
  186. .. rst-class:: classref-method
  187. :ref:`int<class_int>` **insert**\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`Vector4<class_Vector4>`\ ) :ref:`🔗<class_PackedVector4Array_method_insert>`
  188. 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()``).
  189. .. rst-class:: classref-item-separator
  190. ----
  191. .. _class_PackedVector4Array_method_is_empty:
  192. .. rst-class:: classref-method
  193. :ref:`bool<class_bool>` **is_empty**\ (\ ) |const| :ref:`🔗<class_PackedVector4Array_method_is_empty>`
  194. Returns ``true`` if the array is empty.
  195. .. rst-class:: classref-item-separator
  196. ----
  197. .. _class_PackedVector4Array_method_push_back:
  198. .. rst-class:: classref-method
  199. :ref:`bool<class_bool>` **push_back**\ (\ value\: :ref:`Vector4<class_Vector4>`\ ) :ref:`🔗<class_PackedVector4Array_method_push_back>`
  200. Inserts a :ref:`Vector4<class_Vector4>` at the end.
  201. .. rst-class:: classref-item-separator
  202. ----
  203. .. _class_PackedVector4Array_method_remove_at:
  204. .. rst-class:: classref-method
  205. |void| **remove_at**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedVector4Array_method_remove_at>`
  206. Removes an element from the array by index.
  207. .. rst-class:: classref-item-separator
  208. ----
  209. .. _class_PackedVector4Array_method_resize:
  210. .. rst-class:: classref-method
  211. :ref:`int<class_int>` **resize**\ (\ new_size\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedVector4Array_method_resize>`
  212. 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.
  213. .. rst-class:: classref-item-separator
  214. ----
  215. .. _class_PackedVector4Array_method_reverse:
  216. .. rst-class:: classref-method
  217. |void| **reverse**\ (\ ) :ref:`🔗<class_PackedVector4Array_method_reverse>`
  218. Reverses the order of the elements in the array.
  219. .. rst-class:: classref-item-separator
  220. ----
  221. .. _class_PackedVector4Array_method_rfind:
  222. .. rst-class:: classref-method
  223. :ref:`int<class_int>` **rfind**\ (\ value\: :ref:`Vector4<class_Vector4>`, from\: :ref:`int<class_int>` = -1\ ) |const| :ref:`🔗<class_PackedVector4Array_method_rfind>`
  224. 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.
  225. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  226. .. rst-class:: classref-item-separator
  227. ----
  228. .. _class_PackedVector4Array_method_set:
  229. .. rst-class:: classref-method
  230. |void| **set**\ (\ index\: :ref:`int<class_int>`, value\: :ref:`Vector4<class_Vector4>`\ ) :ref:`🔗<class_PackedVector4Array_method_set>`
  231. Changes the :ref:`Vector4<class_Vector4>` at the given index.
  232. .. rst-class:: classref-item-separator
  233. ----
  234. .. _class_PackedVector4Array_method_size:
  235. .. rst-class:: classref-method
  236. :ref:`int<class_int>` **size**\ (\ ) |const| :ref:`🔗<class_PackedVector4Array_method_size>`
  237. Returns the number of elements in the array.
  238. .. rst-class:: classref-item-separator
  239. ----
  240. .. _class_PackedVector4Array_method_slice:
  241. .. rst-class:: classref-method
  242. :ref:`PackedVector4Array<class_PackedVector4Array>` **slice**\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| :ref:`🔗<class_PackedVector4Array_method_slice>`
  243. Returns the slice of the **PackedVector4Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedVector4Array**.
  244. 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())``).
  245. 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)``).
  246. .. rst-class:: classref-item-separator
  247. ----
  248. .. _class_PackedVector4Array_method_sort:
  249. .. rst-class:: classref-method
  250. |void| **sort**\ (\ ) :ref:`🔗<class_PackedVector4Array_method_sort>`
  251. Sorts the elements of the array in ascending order.
  252. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  253. .. rst-class:: classref-item-separator
  254. ----
  255. .. _class_PackedVector4Array_method_to_byte_array:
  256. .. rst-class:: classref-method
  257. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array**\ (\ ) |const| :ref:`🔗<class_PackedVector4Array_method_to_byte_array>`
  258. Returns a :ref:`PackedByteArray<class_PackedByteArray>` with each vector encoded as bytes.
  259. .. rst-class:: classref-section-separator
  260. ----
  261. .. rst-class:: classref-descriptions-group
  262. Operator Descriptions
  263. ---------------------
  264. .. _class_PackedVector4Array_operator_neq_PackedVector4Array:
  265. .. rst-class:: classref-operator
  266. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) :ref:`🔗<class_PackedVector4Array_operator_neq_PackedVector4Array>`
  267. Returns ``true`` if contents of the arrays differ.
  268. .. rst-class:: classref-item-separator
  269. ----
  270. .. _class_PackedVector4Array_operator_sum_PackedVector4Array:
  271. .. rst-class:: classref-operator
  272. :ref:`PackedVector4Array<class_PackedVector4Array>` **operator +**\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) :ref:`🔗<class_PackedVector4Array_operator_sum_PackedVector4Array>`
  273. Returns a new **PackedVector4Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedVector4Array_method_append_array>` instead.
  274. .. rst-class:: classref-item-separator
  275. ----
  276. .. _class_PackedVector4Array_operator_eq_PackedVector4Array:
  277. .. rst-class:: classref-operator
  278. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`PackedVector4Array<class_PackedVector4Array>`\ ) :ref:`🔗<class_PackedVector4Array_operator_eq_PackedVector4Array>`
  279. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal :ref:`Vector4<class_Vector4>`\ s at the corresponding indices.
  280. .. rst-class:: classref-item-separator
  281. ----
  282. .. _class_PackedVector4Array_operator_idx_int:
  283. .. rst-class:: classref-operator
  284. :ref:`Vector4<class_Vector4>` **operator []**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedVector4Array_operator_idx_int>`
  285. Returns the :ref:`Vector4<class_Vector4>` 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.
  286. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  287. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  288. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  289. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  290. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  291. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  292. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  293. .. |void| replace:: :abbr:`void (No return value.)`