jorolf

Results 11 comments of jorolf

The generic parameter should be the type you expect the method to return. As you can see [here](https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/getShaderParameter) the method returns a ``bool`` when you pass ``COMPILE_STATUS``.

About the success thing: just test the array length, 0 = fail, 1 = success

It's probably easier for me to just wait until apiv2 is public

`Arc` isn't always available in `alloc` if the platform doesn't support atomics natively: https://doc.rust-lang.org/alloc/sync/index.html I'm currently working on a project for a risc-v processor and I'm unable to build `regex-automata`...

Hmm nvm then. I was working on reusing parts of a library in a no-std environment but I didn't really check which dependencies are needed for my usecase. Maybe I...

> What would be possible would be a separate inspection for each PMD priority (i.e. medium, high, ...), this would allow to disable for example all low violations. However, I'm...

Also tagging @anuejn and @ld-cd as they've shown some interest in this afaik. (I saw some discussion in the element channel, however that's probably not the best place to write...

I created a proof of concept for a version-independent signature: https://gist.github.com/jorolf/dd6a0bdd36b86126a1bf4ebecf75c990 It's similar to @ld-cd and @tpwrules implementation but (I think) I made it more expandable. Also, I based the...

I updated the signature in the gist to use amaranth streams. The problem of payload struct fieldwire correspondence for the top module mentioned by ld-cd remains. Zyp mentioned the possibility...

Thanks for trying out the signature! > Given how many features AXI allows it might make sense to have this properties class constructed builder style. I agree that there should...