Zachary Dremann

Results 34 issues of Zachary Dremann

See RoaringBitmap/CRoaring#534 This is still a WIP, I believe there are bindings to everything added so far, but still waiting on e.g. de/serialization support, hopefully external iteration, etc.

I think case insensitivity (`unicode-case`) was useful: `--allowlist-item '(?i)(aaa|bbb).*'` used to work for e.g. `AAA_CONST`, and `bbb_func()` Now it (silently 😲) matches nothing. As a workaround, it looks like for...

I would like to store an `Arc` to share a backup engine across threads. As far as I can tell from the docs and implementation, I'm pretty sure Send would...

Use memchr iterators to search for characters to escape. In some (most) cases, we need to combine multiple memchr searches (since memchr allows searching for up to 3 chars at...

This is just a list of functionality which I noticed was missing in comparison to `roaring_bitmap_t` as I was adding [bindings](https://github.com/RoaringBitmap/croaring-rs/pull/125) to croaring-rs. I may add more if I find...

* Update to rust edition 2018, remove unneeded `extern crate`s * Remove trait bounds from types. This is unlikely to actually impact anyone, but could reduce having to propagate bounds...

Fixes #8. Fixes #26. Relates to #4, since the size of the waker seems to have decreased (looks like the discriminant is able to fit in the niche for a...

## Example **Java Source:** ``` java public String doSomething() { return "do something"; } public static int doSomething() { return 1; } ``` **Compiles to:** ``` haxe @:overload(function():String{}) public static...

bug

### Breaking Changes - `PyFileLikeObject::new` and `PyFileLikeObject::require` now take a `&PyAny` instead of a `PyObject` ### Added - `PyFileLikeObject` now implements `FromPyObject`/`ToPyObject`, which allows it to be used directly as...