bb397c183b
Motivation: The hashIndex method currently uses a conditional to handle negative keys. This could be done without a conditional to slightly improve performance. Modifications: Modified hashIndex() to avoid using a conditional. Result: Slight performance improvement to hashIndex().