Advertisement

**== and >>>==

Started by February 27, 2015 07:18 PM
0 comments, last by WitchLord 9 years, 9 months ago

I see **= and >>>= in a lot of places in the documentation but any of them explain what it does.

What do these things do?

These are compound assignment operators.

A **= B; means A = A ** B; (** is power-of or exponent operator)

A >>>= B; means A = A >>> B; (>>> is arithmetic shift right)

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement