MCPcopy Create free account
hub / github.com/apna-college/Alpha / setIthBit

Method setIthBit

5_Bit Manipulation/BitOperations.java:9–12  ·  view source on GitHub ↗
(int n, int i)

Source from the content-addressed store, hash-verified

7
8 //Set ith Bit
9 public static int setIthBit(int n, int i) {
10 int bitMask = 1<<i;
11 return n | bitMask;
12 }
13
14 //Clear ith Bit
15 public static int clearIthBit(int n, int i) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected