saik0

Results 55 comments of saik0

Did you leave the default login credentials in examples.py? Trying to reproduce.

I think it 1 works for commutative & assignment ops, but only when both are owned

Once I finish galloping and simd I'll look at the call stack and evaluate if we spend enough cpu time searching for it to even matter.

I see value in exposing an API for lazy ops regardless of whether or not we expose the iterator extensions that use them internally. To generalize to any kind of...

Picking this up. I'm not clear what equality / cmp semantic we want for roaring bitmaps. What do the other lang roaring libs do? ```rust let input: RoaringBitmap = (0..100).collect();...

Another problem I'm running into when implementing this: Most of the integration tests make assumptions about the implementation details of roaring's containers. The optimal container for _all_ of the following...

I think the underlying problem is more is more fundamental. Integration tests are supposed to be black box tests. These have knowledge of implementation details. Containers are non-public, thus these...

I'm not sure what the right approach to testing this is.

> However, checking that the length is valid is maybe a little bit complex This is what I meant. I'm trying to think of a clean way to `debug_assert` that...