: > How can I flip a DocSet or : > achieve the same sort of thing? : : Currently not implemented... we either could implement it (flip on a
That's not entirely true ... DocSet does have a "getBits()" method that can be used to either access the underlying BitSet of a DocSet, or create a new BitSet that represents the DocSet (if the underlying implimentation isn't already using a BitSet) ... from there you could do BitSet operations to your hearts content, and then construct a new DocSet ... but getBits is deprecated. In the long run, adding all of the methods currently in the BitSet class to the DocSet interface would be mighty nice. -Hoss