' Rotate an Integer to the left the specified number of times'' NOTE: requires Power2()Function RotateLeftI(ByVal value As Integer, ByVal times As Long) As Integer Dim i As Long, signBits As Integer ' no need to rotate more times than required times = times Mod 16 ' return the number if it's a multiple of 16 If times = 0 Then RotateLeftI = value: Exit Function For i = 1 To times ' remember the 2 most significant bits signBits = value And &HC000 ' clear those bit and shift to the left by one position value = (value And &H3FFF) * 2 ' if the number was negative, then add 1 ' if bit 30 was set, then set the sign bit value = value Or ((signBits < 0) And 1) Or (CBool(signBits And &H4000) _ And &H8000) Next RotateLeftI = valueEnd Function



Top 5 B2B SaaS Marketing Agencies for 2023
In recent years, the software-as-a-service (SaaS) sector has experienced exponential growth as more and more companies choose cloud-based solutions. Any SaaS company hoping to stay ahead of the curve in this quickly changing industry needs to invest in effective marketing. So selecting the best marketing agency can mean the difference