// Created by Frank M. Carrano and Tim Henry. // Copyright (c) 2013 __Pearson Education__. All rights reserved. template bool Entry::operator==(const Entry& rightHandItem) const { return (searchKey == rightHandItem.getKey()); } // end operator==