Benjamin Kay

Results 22 comments of Benjamin Kay

In my view the greatest "benefit" of `cpp_class!` is generating a chunk of memory in Rust with the same size and alignment as a C++ object. It's true, `cpp_class!` does...

I like the idea, but would maybe have the macro do even less. In my initial comment I gave an example of `CppString::new_box()` that default-initializes a `CppString` into `Pin`. More...

@emiddleton, I had the same thought, but you beat me to it! I wrote fully-tested implementation [here](https://github.com/benkay86/matlab-ndarray-tutorial/blob/master/src/pseudoinverse.rs), but had not yet covered the in-place use case. The main difference between...

I am by no means an expert in what is the most idiomatic use of nom, but I'll give you my 2¢. It appears that under Windows Subsystem for Linux...

If you would like to send a PR I would be happy to test it on my native Linux system too.

Love the LALRPOP crate, but not having support for comments out of the box is a big letdown. All of the [Example Uses in README.md](https://github.com/lalrpop/lalrpop#example-uses) have comments, including LALRPOP itself,...

The sample code at the top of this issue still fails to match the `Y::AB` variant and panics, even when testing against quick-xml from git master. @carrascomj, it looks like...

Apologies, I had a baby and kind of lost track of this! It looks like there is still broad interest in NIFTI-2 support, and aside from some formatting issues and...

I didn't think about `ArcArray` as a use case for `mapv_into_any()` when I contributed that PR, but I agree it would be nice to avoid unnecessary clones. @RReverser, would you...

@bluss, happy to see you active on GitHub! Ndarray is a really valuable project, happy to see it hasn't been completely abandoned. OK, I took a stab at this with...