Michael Neumann

Results 39 comments of Michael Neumann

I have used imgui-rs (the Rust interface) in [HyperNSGA](https://github.com/mneumann/hypernsga), which was part of my diploma thesis to visualize the evolutionary development and optimization of spiking neural networks (using compositional pattern...

If the struct that you wanna zero out implements either `Copy` or `!Copy` (aka "Move"), but not `Pin`, Rust will happily `memcpy` the underlying memory of your struct whenever you...

@tekjar Hi, yes I think that PR grew too big. I will have to split this into several independent PRs. Most importantly for me is to get away with `panics`...

@tekjar We use the `PublishWithNotify` to associate a message with the `pkid` that is used by rumqttc. So, it would be easy to change the signature of `publish` to return...

also see C++ 11's user-defined literals: https://en.cppreference.com/w/cpp/language/user_literal which not only applies to strings, but also numerical literals. I have no clear opinion whether it's worth having such support... though `12_km`...

My use case is :a:, where I have some working code that I want to test and maybe even roll out as preview version, but when it hits the public,...

`asdf` doesn't seem to be easily available for FreeBSD :( There is only support for `ASDF, Advanced Scientific Data Format` :). You probably have code in the `Makefile` to produce...

`lin` would actually be more an affine type as it gets dropped (`_dispose`d) automatically when not used. In Rust, you can add `#[must_use]` annotations to functions telling the compiler to...

Yes, that is basically what I was asking for! Just curious, but do you know the exact reasons why the Verona runtime requires tracking `iso`s?