public T Find(Word word) { return(defTable[word.hashCode()]); }
public void Insert(Word word, T defination) { defTable[word.hashCode()] = defination; }