! Returns whether the array is empty (i.e. whether its size is 0). \return true if the array is empty */
| 823 | true if the array is empty |
| 824 | */ |
| 825 | NX_INLINE bool empty() const |
| 826 | { |
| 827 | return mSize==0; |
| 828 | } |
| 829 | |
| 830 | /*! |
| 831 | Finds the first occurrence of an element in the array. |
no outgoing calls