Java Bit Set SetBit(byte _bitset, byte bit)

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

Description

Set Bit

License

Apache License

Declaration

public static void SetBit(byte _bitset, byte bit) 

Method Source Code

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

public class Main {
    public static void SetBit(byte _bitset, byte bit) {
        _bitset |= bit;//  w  ww . jav a2s.co m
    }
}

Related

  1. setBit(byte _byte, int position, boolean value)
  2. setBit(byte a, int pos, boolean set)
  3. setBit(byte b, int i)
  4. setBit(byte b, int pos)