class_packedfloat32array.rst 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  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/4.3/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.3/doc/classes/PackedFloat32Array.xml.
  6. .. _class_PackedFloat32Array:
  7. PackedFloat32Array
  8. ==================
  9. A packed array of 32-bit floating-point values.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold 32-bit floating-point values (float). Packs data tightly, so it saves memory for large array sizes.
  14. If you need to pack 64-bit floats tightly, see :ref:`PackedFloat64Array<class_PackedFloat64Array>`.
  15. \ **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_PackedFloat32Array_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.
  16. .. note::
  17. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  18. .. rst-class:: classref-reftable-group
  19. Constructors
  20. ------------
  21. .. table::
  22. :widths: auto
  23. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`PackedFloat32Array<class_PackedFloat32Array_constructor_PackedFloat32Array>`\ (\ ) |
  25. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`PackedFloat32Array<class_PackedFloat32Array_constructor_PackedFloat32Array>`\ (\ from\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) |
  27. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`PackedFloat32Array<class_PackedFloat32Array_constructor_PackedFloat32Array>`\ (\ from\: :ref:`Array<class_Array>`\ ) |
  29. +-----------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. .. rst-class:: classref-reftable-group
  31. Methods
  32. -------
  33. .. table::
  34. :widths: auto
  35. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`bool<class_bool>` | :ref:`append<class_PackedFloat32Array_method_append>`\ (\ value\: :ref:`float<class_float>`\ ) |
  37. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  38. | |void| | :ref:`append_array<class_PackedFloat32Array_method_append_array>`\ (\ array\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) |
  39. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedFloat32Array_method_bsearch>`\ (\ value\: :ref:`float<class_float>`, before\: :ref:`bool<class_bool>` = true\ ) |
  41. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  42. | |void| | :ref:`clear<class_PackedFloat32Array_method_clear>`\ (\ ) |
  43. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`int<class_int>` | :ref:`count<class_PackedFloat32Array_method_count>`\ (\ value\: :ref:`float<class_float>`\ ) |const| |
  45. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`duplicate<class_PackedFloat32Array_method_duplicate>`\ (\ ) |
  47. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  48. | |void| | :ref:`fill<class_PackedFloat32Array_method_fill>`\ (\ value\: :ref:`float<class_float>`\ ) |
  49. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`int<class_int>` | :ref:`find<class_PackedFloat32Array_method_find>`\ (\ value\: :ref:`float<class_float>`, from\: :ref:`int<class_int>` = 0\ ) |const| |
  51. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`has<class_PackedFloat32Array_method_has>`\ (\ value\: :ref:`float<class_float>`\ ) |const| |
  53. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`int<class_int>` | :ref:`insert<class_PackedFloat32Array_method_insert>`\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`float<class_float>`\ ) |
  55. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedFloat32Array_method_is_empty>`\ (\ ) |const| |
  57. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedFloat32Array_method_push_back>`\ (\ value\: :ref:`float<class_float>`\ ) |
  59. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  60. | |void| | :ref:`remove_at<class_PackedFloat32Array_method_remove_at>`\ (\ index\: :ref:`int<class_int>`\ ) |
  61. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`int<class_int>` | :ref:`resize<class_PackedFloat32Array_method_resize>`\ (\ new_size\: :ref:`int<class_int>`\ ) |
  63. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  64. | |void| | :ref:`reverse<class_PackedFloat32Array_method_reverse>`\ (\ ) |
  65. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`int<class_int>` | :ref:`rfind<class_PackedFloat32Array_method_rfind>`\ (\ value\: :ref:`float<class_float>`, from\: :ref:`int<class_int>` = -1\ ) |const| |
  67. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  68. | |void| | :ref:`set<class_PackedFloat32Array_method_set>`\ (\ index\: :ref:`int<class_int>`, value\: :ref:`float<class_float>`\ ) |
  69. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`int<class_int>` | :ref:`size<class_PackedFloat32Array_method_size>`\ (\ ) |const| |
  71. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`slice<class_PackedFloat32Array_method_slice>`\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| |
  73. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  74. | |void| | :ref:`sort<class_PackedFloat32Array_method_sort>`\ (\ ) |
  75. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedFloat32Array_method_to_byte_array>`\ (\ ) |const| |
  77. +-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------+
  78. .. rst-class:: classref-reftable-group
  79. Operators
  80. ---------
  81. .. table::
  82. :widths: auto
  83. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedFloat32Array_operator_neq_PackedFloat32Array>`\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) |
  85. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`PackedFloat32Array<class_PackedFloat32Array>` | :ref:`operator +<class_PackedFloat32Array_operator_sum_PackedFloat32Array>`\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) |
  87. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedFloat32Array_operator_eq_PackedFloat32Array>`\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) |
  89. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`float<class_float>` | :ref:`operator []<class_PackedFloat32Array_operator_idx_int>`\ (\ index\: :ref:`int<class_int>`\ ) |
  91. +-----------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------+
  92. .. rst-class:: classref-section-separator
  93. ----
  94. .. rst-class:: classref-descriptions-group
  95. Constructor Descriptions
  96. ------------------------
  97. .. _class_PackedFloat32Array_constructor_PackedFloat32Array:
  98. .. rst-class:: classref-constructor
  99. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **PackedFloat32Array**\ (\ ) :ref:`🔗<class_PackedFloat32Array_constructor_PackedFloat32Array>`
  100. Constructs an empty **PackedFloat32Array**.
  101. .. rst-class:: classref-item-separator
  102. ----
  103. .. rst-class:: classref-constructor
  104. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **PackedFloat32Array**\ (\ from\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ )
  105. Constructs a **PackedFloat32Array** as a copy of the given **PackedFloat32Array**.
  106. .. rst-class:: classref-item-separator
  107. ----
  108. .. rst-class:: classref-constructor
  109. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **PackedFloat32Array**\ (\ from\: :ref:`Array<class_Array>`\ )
  110. Constructs a new **PackedFloat32Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  111. .. rst-class:: classref-section-separator
  112. ----
  113. .. rst-class:: classref-descriptions-group
  114. Method Descriptions
  115. -------------------
  116. .. _class_PackedFloat32Array_method_append:
  117. .. rst-class:: classref-method
  118. :ref:`bool<class_bool>` **append**\ (\ value\: :ref:`float<class_float>`\ ) :ref:`🔗<class_PackedFloat32Array_method_append>`
  119. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedFloat32Array_method_push_back>`).
  120. .. rst-class:: classref-item-separator
  121. ----
  122. .. _class_PackedFloat32Array_method_append_array:
  123. .. rst-class:: classref-method
  124. |void| **append_array**\ (\ array\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) :ref:`🔗<class_PackedFloat32Array_method_append_array>`
  125. Appends a **PackedFloat32Array** at the end of this array.
  126. .. rst-class:: classref-item-separator
  127. ----
  128. .. _class_PackedFloat32Array_method_bsearch:
  129. .. rst-class:: classref-method
  130. :ref:`int<class_int>` **bsearch**\ (\ value\: :ref:`float<class_float>`, before\: :ref:`bool<class_bool>` = true\ ) :ref:`🔗<class_PackedFloat32Array_method_bsearch>`
  131. 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.
  132. \ **Note:** Calling :ref:`bsearch<class_PackedFloat32Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  133. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  134. .. rst-class:: classref-item-separator
  135. ----
  136. .. _class_PackedFloat32Array_method_clear:
  137. .. rst-class:: classref-method
  138. |void| **clear**\ (\ ) :ref:`🔗<class_PackedFloat32Array_method_clear>`
  139. Clears the array. This is equivalent to using :ref:`resize<class_PackedFloat32Array_method_resize>` with a size of ``0``.
  140. .. rst-class:: classref-item-separator
  141. ----
  142. .. _class_PackedFloat32Array_method_count:
  143. .. rst-class:: classref-method
  144. :ref:`int<class_int>` **count**\ (\ value\: :ref:`float<class_float>`\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_count>`
  145. Returns the number of times an element is in the array.
  146. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  147. .. rst-class:: classref-item-separator
  148. ----
  149. .. _class_PackedFloat32Array_method_duplicate:
  150. .. rst-class:: classref-method
  151. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **duplicate**\ (\ ) :ref:`🔗<class_PackedFloat32Array_method_duplicate>`
  152. Creates a copy of the array, and returns it.
  153. .. rst-class:: classref-item-separator
  154. ----
  155. .. _class_PackedFloat32Array_method_fill:
  156. .. rst-class:: classref-method
  157. |void| **fill**\ (\ value\: :ref:`float<class_float>`\ ) :ref:`🔗<class_PackedFloat32Array_method_fill>`
  158. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedFloat32Array_method_resize>` to create an array with a given size and initialized elements.
  159. .. rst-class:: classref-item-separator
  160. ----
  161. .. _class_PackedFloat32Array_method_find:
  162. .. rst-class:: classref-method
  163. :ref:`int<class_int>` **find**\ (\ value\: :ref:`float<class_float>`, from\: :ref:`int<class_int>` = 0\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_find>`
  164. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  165. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  166. .. rst-class:: classref-item-separator
  167. ----
  168. .. _class_PackedFloat32Array_method_has:
  169. .. rst-class:: classref-method
  170. :ref:`bool<class_bool>` **has**\ (\ value\: :ref:`float<class_float>`\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_has>`
  171. Returns ``true`` if the array contains ``value``.
  172. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  173. .. rst-class:: classref-item-separator
  174. ----
  175. .. _class_PackedFloat32Array_method_insert:
  176. .. rst-class:: classref-method
  177. :ref:`int<class_int>` **insert**\ (\ at_index\: :ref:`int<class_int>`, value\: :ref:`float<class_float>`\ ) :ref:`🔗<class_PackedFloat32Array_method_insert>`
  178. 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()``).
  179. .. rst-class:: classref-item-separator
  180. ----
  181. .. _class_PackedFloat32Array_method_is_empty:
  182. .. rst-class:: classref-method
  183. :ref:`bool<class_bool>` **is_empty**\ (\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_is_empty>`
  184. Returns ``true`` if the array is empty.
  185. .. rst-class:: classref-item-separator
  186. ----
  187. .. _class_PackedFloat32Array_method_push_back:
  188. .. rst-class:: classref-method
  189. :ref:`bool<class_bool>` **push_back**\ (\ value\: :ref:`float<class_float>`\ ) :ref:`🔗<class_PackedFloat32Array_method_push_back>`
  190. Appends an element at the end of the array.
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_PackedFloat32Array_method_remove_at:
  194. .. rst-class:: classref-method
  195. |void| **remove_at**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedFloat32Array_method_remove_at>`
  196. Removes an element from the array by index.
  197. .. rst-class:: classref-item-separator
  198. ----
  199. .. _class_PackedFloat32Array_method_resize:
  200. .. rst-class:: classref-method
  201. :ref:`int<class_int>` **resize**\ (\ new_size\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedFloat32Array_method_resize>`
  202. 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_PackedFloat32Array_method_resize>` once and assigning the new values is faster than adding new elements one by one.
  203. .. rst-class:: classref-item-separator
  204. ----
  205. .. _class_PackedFloat32Array_method_reverse:
  206. .. rst-class:: classref-method
  207. |void| **reverse**\ (\ ) :ref:`🔗<class_PackedFloat32Array_method_reverse>`
  208. Reverses the order of the elements in the array.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_PackedFloat32Array_method_rfind:
  212. .. rst-class:: classref-method
  213. :ref:`int<class_int>` **rfind**\ (\ value\: :ref:`float<class_float>`, from\: :ref:`int<class_int>` = -1\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_rfind>`
  214. 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.
  215. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  216. .. rst-class:: classref-item-separator
  217. ----
  218. .. _class_PackedFloat32Array_method_set:
  219. .. rst-class:: classref-method
  220. |void| **set**\ (\ index\: :ref:`int<class_int>`, value\: :ref:`float<class_float>`\ ) :ref:`🔗<class_PackedFloat32Array_method_set>`
  221. Changes the float at the given index.
  222. .. rst-class:: classref-item-separator
  223. ----
  224. .. _class_PackedFloat32Array_method_size:
  225. .. rst-class:: classref-method
  226. :ref:`int<class_int>` **size**\ (\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_size>`
  227. Returns the number of elements in the array.
  228. .. rst-class:: classref-item-separator
  229. ----
  230. .. _class_PackedFloat32Array_method_slice:
  231. .. rst-class:: classref-method
  232. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **slice**\ (\ begin\: :ref:`int<class_int>`, end\: :ref:`int<class_int>` = 2147483647\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_slice>`
  233. Returns the slice of the **PackedFloat32Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedFloat32Array**.
  234. 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())``).
  235. 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)``).
  236. .. rst-class:: classref-item-separator
  237. ----
  238. .. _class_PackedFloat32Array_method_sort:
  239. .. rst-class:: classref-method
  240. |void| **sort**\ (\ ) :ref:`🔗<class_PackedFloat32Array_method_sort>`
  241. Sorts the elements of the array in ascending order.
  242. \ **Note:** :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` doesn't behave the same as other numbers. Therefore, the results from this method may not be accurate if NaNs are included.
  243. .. rst-class:: classref-item-separator
  244. ----
  245. .. _class_PackedFloat32Array_method_to_byte_array:
  246. .. rst-class:: classref-method
  247. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array**\ (\ ) |const| :ref:`🔗<class_PackedFloat32Array_method_to_byte_array>`
  248. Returns a copy of the data converted to a :ref:`PackedByteArray<class_PackedByteArray>`, where each element have been encoded as 4 bytes.
  249. The size of the new array will be ``float32_array.size() * 4``.
  250. .. rst-class:: classref-section-separator
  251. ----
  252. .. rst-class:: classref-descriptions-group
  253. Operator Descriptions
  254. ---------------------
  255. .. _class_PackedFloat32Array_operator_neq_PackedFloat32Array:
  256. .. rst-class:: classref-operator
  257. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) :ref:`🔗<class_PackedFloat32Array_operator_neq_PackedFloat32Array>`
  258. Returns ``true`` if contents of the arrays differ.
  259. .. rst-class:: classref-item-separator
  260. ----
  261. .. _class_PackedFloat32Array_operator_sum_PackedFloat32Array:
  262. .. rst-class:: classref-operator
  263. :ref:`PackedFloat32Array<class_PackedFloat32Array>` **operator +**\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) :ref:`🔗<class_PackedFloat32Array_operator_sum_PackedFloat32Array>`
  264. Returns a new **PackedFloat32Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedFloat32Array_method_append_array>` instead.
  265. .. rst-class:: classref-item-separator
  266. ----
  267. .. _class_PackedFloat32Array_operator_eq_PackedFloat32Array:
  268. .. rst-class:: classref-operator
  269. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`PackedFloat32Array<class_PackedFloat32Array>`\ ) :ref:`🔗<class_PackedFloat32Array_operator_eq_PackedFloat32Array>`
  270. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal floats at the corresponding indices.
  271. .. rst-class:: classref-item-separator
  272. ----
  273. .. _class_PackedFloat32Array_operator_idx_int:
  274. .. rst-class:: classref-operator
  275. :ref:`float<class_float>` **operator []**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`🔗<class_PackedFloat32Array_operator_idx_int>`
  276. Returns the :ref:`float<class_float>` 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.
  277. Note that :ref:`float<class_float>` type is 64-bit, unlike the values stored in the array.
  278. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  279. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  280. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  281. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  282. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  283. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  284. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  285. .. |void| replace:: :abbr:`void (No return value.)`