Zachary Dremann

Results 54 comments of Zachary Dremann

I don't have commit access, but I have no problem with having a public branch. Before it's merged, do you think you could pull out the first two commits? I...

I still don't really like that `SemVer.ofString(">1.2.3")` doesn't complain that `">1.2.3"` isn't a version. I also don't like that there's two ways to make a constraint from a string: `SemVer.ofString(">1.2.3")`...

I think it's well past time we revisit this issue. Building off of [this comment](https://github.com/HaxeFoundation/haxelib/issues/2#issuecomment-15246527), I propose the following. These are fairly large changes to what is currently in this...

A couple of notes. 1. Restricting to only opportunistic dependencies doesn't prevent us from having to walk all versions. If we require `lib_a`, `lib_b` and `lib_c@[3.2.1 - 4.0.0]`, `[email protected]` might...

Crazy, terrible, stupid idea to avoid increasing the size of `RoaringBitmap` but still store the cardinality: The max cardinality of the bitmap is `0x1_0000_0000` (33 bits). but the `len` and...

I'd also like https://github.com/capnproto/capnproto/commit/df02ac653ac1e20337ad502fac1f316c7f115bf7 included, for Executor::add_ref

You are missing a semicolon at the end of line 1 after the id.

Perhaps this should be a milestone? I'm not sure how all that works in github.

Looks like it's because we use Std.string to convert to a string. Looks like we might have to do it ourselves.

To clarify, I'm envisioning something like: ```python AnyRoute = Union[WebSocketRoute, ASGIRoute, HTTPRoute] class RouteMap: def __init__(self): ... def add_routes(self, routes: Collection[AnyRoute]): ... def resolve_route(self, scope: Scope) -> ASGIRoute: ... ```...