Reference for Processing version 1.0+. 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)
Examples
int a = 205; // In binary: 11001101
int b = 45; // In binary: 00101101
int c = a | b; // In binary: 11101101
println(c); // Prints "237", the decimal equivalent to 11101101int a = 255
Processing was initiated by Ben Fry and Casey Reas. It is developed by a small team of volunteers.