Daniel Lemire

Results 1864 comments of Daniel Lemire

Pull request invited.

Yes... this is a reasonable use case, but please review my comments on the PR. I think we want a non-invasive solution. That is, we want something that does not...

It does seem that what is needed is a bitmap writer. Of course, it would work much better if the input is sorted but if not, you could still partially...

I recommend working on a bitmap writer. It is a well-defined problem, it is relatively easy to implement it safely and efficiently, the API won't be confusing and it will...

Looks reasonable.

Does someone want to comment ?

We will handle it from here. Thanks.

Effectively, this is an attempt at doing your own memory allocation. Such approaches can help, in specific scenarios, but they can also cause harm and increase complexity. There is a...

Yes, the ability to provide a custom memory allocator is a reasonable path if it can be implemented in a reasonable manner. For that to be effective, you need to...

@richardartoul I do not understand how you can safely reuse an array with a new bitmap without knowing that the array is now available.