Java com.badlogic.gdx.utils Bits fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.utils Bits fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.utils Bits.

The text is from its open source code.

Constructor

Bits()
Bits(int nbits)
Creates a bit set whose initial size is large enough to explicitly represent bits with indices in the range 0 through nbits-1.

Method

booleancontainsAll(Bits other)
Returns true if this bit set is a super set of the specified set, i.e.
booleanget(int index)
booleanisEmpty()
intlength()
Returns the "logical size" of this bitset: the index of the highest set bit in the bitset plus one.
voidset(int index)