Asger Hautop Drewsen

Results 106 issues of Asger Hautop Drewsen

The following code works when using v2.1.1 of amqprs, but fails when using v2.1.2: ```toml [package] name = "amqprs-test" version = "0.1.0" edition = "2024" [dependencies] amqprs = { version...

I think the following `race_with_index` function would be very useful: ```rust pub trait Race { type Output; type Future: Future; fn race(self) -> Self::Future; // New method: fn race_with_index(self) ->...

It would be nice to have a `modpow` function.

Without this I get the following errors when compiling: ``` $ make /usr/bin/gcc sslkeylog.c -shared -o libsslkeylog.so -fPIC -ldl sslkeylog.c: In function ‘SSL_new’: sslkeylog.c:119:9: error: too many arguments to function...

### Preflight Checklist - [x] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [x] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. -...

platform/windows
bug :beetle:
has-repro-comment
39-x-y

It would be nice to have a class such as: ```python3 class IntervalContainer: def __init__(self): self.intervals = [] def add(self, interval): ... ``` ```python3 intervals = Intervals() for interval in...