Top 1,000 Features Creators Events Podcasts Extensions Interviews Blog Explorer CSV

Bitwise Operators

< >
Example from 1 languages: JavaScript
var x = 5 & 1;
Example from 1 languages: C
int i = 4; /* bit pattern equivalent is binary 100 */ int j = i << 2; /* makes it binary 10000, which multiplies the original number by 4 i.e. 16 */
Example from 2 languages: Python, Speedie
x << y
Example from 1 languages: R
! x x & y x && y x | y x || y xor(x, y)
Example from 1 languages: Lua
& | ~ << >> ~
Example from 1 languages: C3
int i = b << 4 + x; // Same as (b << 4) + x
Example from 1 languages: Slope
(& 0xFF 0x1B)
Example from 1 languages: Jule
& | ^ << >>
*

Languages with Bitwise Operators include JavaScript, C, Python, R, Lua, C3, C2, Slope, Dale, Jule, SAKO, Speedie

*

Languages without Bitwise Operators include progsbase

*

View all concepts with or missing a hasBitWiseOperators measurement

*

Read more about Bitwise Operators on the web: 1. 2.

View source

- Build the next great programming language About Resources Acknowledgements Part of the World Wide Scroll