Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Bitwise Operators

< >
Example from 1 languages: JavaScript
var x = 5 & 1;
Example from 2 languages: Python, Speedie
x << y
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 1 languages: R
! x x & y x && y x | y x || y xor(x, y)
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, Python, C, R, C3, Slope, C2, Dale, Jule, 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 Acknowledgements Extensions Day 630 Donate feedback@pldb.io