Java Bit Unset UnsetBit(byte _bitset, byte bit)

Here you can find the source of UnsetBit(byte _bitset, byte bit)

Description

Unset Bit

License

Apache License

Declaration

public static void UnsetBit(byte _bitset, byte bit) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static void UnsetBit(byte _bitset, byte bit) {
        _bitset &= Byte.valueOf(bit);
    }//from ww  w  .  j  a  v a 2  s. c o m
}

Related

  1. unset(byte[] bytes)
  2. unsetb(int num, int bitmask)
  3. unsetBit(byte b, int pos)
  4. unsetBit(byte original, int bitToUnSet)
  5. unsetBit(byte[] b, int index)
  6. unsetBit(int f, int i)