! Returns whether the array is empty (i.e. whether its size is 0). \return true if the array is empty */
| 264 | true if the array is empty |
| 265 | */ |
| 266 | PX_FORCE_INLINE bool empty() const |
| 267 | { |
| 268 | return mSize == 0; |
| 269 | } |
| 270 | |
| 271 | /*! |
| 272 | Finds the first occurrence of an element in the array. |