I found this code online that i'd like to understand. However, googling didn't turn up any results as to the meaning of the ampersand in the following code
return ( 1.0 - ( (x * (x * x * 15731 + 789221) + 1376312589) & 7fffffff) / 1073741824.0);
I got it from the following page: http://freespace.virgin.net/hugo.elias/models/m_perlin.htm
and yes, it has been pointed out that it is not real perlin, but I don't care, I want to know the basics for now.
Greetings