Uses of Class
fj.data.hamt.BitSet
-
Packages that use BitSet Package Description fj Types that set the premise for the existence of Functional Java.fj.data.hamt -
-
Uses of BitSet in fj
Fields in fj with type parameters of type BitSet Modifier and Type Field Description static Equal<BitSet>Equal. bitSetSequalAn equal instance for theBitSettype.static Show<BitSet>Show. bitSetShow -
Uses of BitSet in fj.data.hamt
Fields in fj.data.hamt declared as BitSet Modifier and Type Field Description private BitSetHashArrayMappedTrie. bitSetstatic BitSetBitSet. EMPTYMethods in fj.data.hamt that return BitSet Modifier and Type Method Description BitSetBitSet. and(BitSet bs)BitSetBitSet. clear(int index)static BitSetBitSet. empty()BitSetHashArrayMappedTrie. getBitSet()static BitSetBitSet. listBitSet(List<java.lang.Boolean> list)static BitSetBitSet. longBitSet(long l)BitSetBitSet. not()BitSetBitSet. or(BitSet bs)BitSetBitSet. range(int highIndex, int lowIndex)Returns the bit set from indices in the range from low (inclusive) to high(exclusive) from the least significant bit (on the right), e.g.BitSetBitSet. set(int index)BitSetBitSet. set(int index, boolean b)BitSetBitSet. shiftLeft(int n)BitSetBitSet. shiftRight(int n)static BitSetBitSet. streamBitSet(Stream<java.lang.Boolean> s)static BitSetBitSet. stringBitSet(java.lang.String s)BitSetBitSet. takeLower(int n)BitSetBitSet. takeUpper(int n)BitSetBitSet. xor(BitSet bs)Methods in fj.data.hamt with parameters of type BitSet Modifier and Type Method Description BitSetBitSet. and(BitSet bs)private static <K,V>
HashArrayMappedTrie<K,V>HashArrayMappedTrie. hamt(BitSet bs, Seq<Node<K,V>> s, Equal<K> e, Hash<K> h)Static constructor for a HAMT instance.BitSetBitSet. or(BitSet bs)BitSetBitSet. xor(BitSet bs)Constructors in fj.data.hamt with parameters of type BitSet Constructor Description HashArrayMappedTrie(BitSet bs, Seq<Node<K,V>> s, Equal<K> e, Hash<K> h)Creates an empty trie for the bitset, sequence of nodes, equal and hash.
-