Christian Mazakas

Results 53 comments of Christian Mazakas

Boost is great! Relying on Boost is a smart decision from a code maintenance perspective.

Why is depending on a Boost "quite a side effect"? Do your dev machines not have enough disk space? Is typing `./bootstrap.sh && ./b2 install --prefix=... cxxstd=11` too convenient?

This should be: `if(!(seconds > 0)) return Promise.resolve(0);` Mixing return types in an un-typed language like JS is just asking for maintainability and debugging nightmares. By returning a synchronous Promise,...

What kind of operations did you have in mind for benchmarking?

Well, I can still do something about this. I can update the documentation to include a section comparing minivec to other popular implementations of Vec and Vec-like crates. I think...

> Although I know from talking with him that the only goal is to provide Vec with size of pointer. It was originally but I like the idea of adding...

What I'm doing now in my Rust project is just creating an intermediate `.c` file that contains stuff like: ```c #include int rio_io_uring_opcode_supported(const struct io_uring_probe *p, int op) { return...

You might need the `-batch` flag to prevent Dr. Memory from trying to open up Notepad.

Thank you for this issue! I was having trouble as well with following the docs. Manually assigning to `nil` makes everything work perfectly :)

The STL is huge. I think we can at least partially condense it into roughly: Container types -> explaining STL iterator model -> `` -> threading/concurrency utils -> everything else...