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

Method clearIthBit

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

Source from the content-addressed store, hash-verified

13
14 //Clear ith Bit
15 public static int clearIthBit(int n, int i) {
16 int bitMask = ~(1<<i);
17 return n & bitMask;
18 }
19
20 //Update ith Bit
21 public static int updateIthBit(int n, int i, int val) {

Callers 1

updateIthBitMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected