rdeits
2
Nope, definitely not. Here’s the full definition of the type, which you can find by doing @edit BitSet():
mutable struct BitSet <: AbstractSet{Int}
bits::Vector{UInt64}
# 1st stored Int equals 64*offset
offset::Int
BitSet() = new(sizehint!(zeros(UInt64, 0), 4), NO_OFFSET)
end
1 Like