Source of remove.cpp


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

  4: template <class KeyType, class ValueType>
  5: bool TreeDictionary<KeyType, ValueType>::remove(const KeyType& searchKey)
  6: {
  7:    return itemTree.remove(Entry<KeyType, ValueType>(searchKey, valueType()));
  8: }  // end remove