|  | 
      
        
          | T* Find | ( | const char * | pHashBuffer, |  
          |  |  | int | len = -1 |  
          |  | ) |  |  |  
Gets an item in the list by hash value.  Parameters
  
    | pHashBuffer | Buffer to be hashed. |  | len | Length of the buffer. If len is set to -1, pHashBuffer is treated as a string and len is determined by the terminating NULL character. | 
 ReturnsA pointer to the item, or NULL if it was not found in the list. 
 |