-
**What is the feature you'd like to have?**
It would be nice to have a way to import certain types / standard structs via an interface, if the struct name is known.
(and assign that to some variable…
-
Wrapping datatypes in tables is not zero-cost, so we would want to be able to avoid doing this just to be able to hold a union of structs. Not having it means that many patterns are *extremely* painfu…
-
Hi,
I noticed every time I generate my Go structs, regardless of definitions inside .pkl files Go structs always contains struct pointers, never structs.
When I have structs generated from one t…
eli-l updated
4 months ago
-
Hi,
I'm trying to write a controller for the basic demo in readme, but seems like I can't use the structs inside `internal`, Go doesn't like it much.
```
package stackscontroller
import (
…
-
## Topics:
- pointers
- CPU cache hierarchy
- structs
- alignment
- arrays
- vectors
- vectorisation
-
Syntax like stream.config.rate.rate_config.day_count_convention is cumbersome and deeply coupled with the representation logic of the structs. Writing getter methods leave us with the flexibility to c…
-
`HybridPSO` won't work with mutable structs, similar to something we saw in `DiffEqGPU`.
https://github.com/SciML/SciMLBase.jl/blob/599174668d1964cef610eec6c0652a2383f2e374/src/problems/nonlinear_pr…
-
When using pdb as input in af2_binder_design, the checkpoints are skipped due to a mismatch in naming conventions. The full pdb name is added to self.finished_structs, but the checkpoint check is perf…
-
Since `@bitCast` never changes memory layout, it should be possible for it to be an lvalue when its parameter is one. For example:
```zig
var x: u32 = 42;
const y: *i32 = &@bitCast(x);
y.* = -1;…
-
right now ghidra make very messy decompiled code for gba, full of gotos, unrecovered jumptables, and return in_lr's, even with structs specified
i'm decomping more functions in metroid fusion https:/…