bitwiseORandassign


|= (bitwise OR and assign) \ Language (API) \ Wiring ALPHA 1.0 Search wiring.org.co: Language (A-Z) \ Libraries \ Environment \ Learning \ Hardware Reference for Wiring version 0027+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know. Name |= (bitwise OR and assign) Examples unsigned int a = 60; // 60 = 0011 1100 unsigned int b = 13; // 13 = 0000 1101 a |= b; // 61 = 0011 1101 Description Combines bitwise OR and assign. The expression a |= b is equivalent to a = a | b. Syntax expression1 |= expression2 Parameters expression1 any valid expression expression2 any valid expression Usage Application Related & (bitwise AND)&= (bitwise AND and assign)| (bitwise OR)^ (bitwise XOR)˜ (bitwise ones complement)> (bitwise bit shift right) Updated on September 16, 2010 09:14:59pm PDT Wiring is an open project initiated by Hernando Barragán. It is developed by a small team of volunteers. © Info, Processing © Info

Wyszukiwarka

Podobne podstrony:
language operators bitwise
BitwiseAnd
language operators bitwise
BitwiseAnd
bitwiseAND
BitwiseCompoundOr
bitwiseAND
language operators bitwise
BitwiseXorNot
bitwisebitshiftleft
BitwiseXorNot
BitwiseCompoundAnd
bitwiseOR
BitwiseAnd
bitwiseonescomplement
bitwiseXOR
BitwiseXorNot

więcej podobnych podstron