package bits

type Bits struct {
	val int64
}

func (s *Bits) BitSet(val bool, offset int) {
	//rVal := 0
	//if !val {
	//	rVal = 1
	//}

}