It's a bitwise shift left
operator that means you assign h
the value when shifted left by two bits effectively multiplying h
by 2 to the power of 2:
h << 2 == h * (2 ^ 2)
You can find more information about it here.
Hint: Next time search http://www.google.com first.