Returns true if the array is empty
| 726 | |
| 727 | // Returns true if the array is empty |
| 728 | bool IsEmpty() |
| 729 | { |
| 730 | return (TotalItemCount == 0); |
| 731 | } |
| 732 | |
| 733 | // Returns true if the item at n-th position is present |
| 734 | bool IsItemPresent(size_t index) |
no outgoing calls
no test coverage detected