Source of isEmpty.cpp


  1: //  Created by Frank M. Carrano and Timothy M. Henry.
  2: //  Copyright (c) 2017 Pearson Education, Hoboken, New Jersey.

  4: template<class ItemType>
  5: bool ArrayList<ItemType>::isEmpty() const
  6: {
  7:    return itemCount == 0;
  8: }  // end isEmpty