-
Imported from SourceForge on 2024-07-04 17:05:51
Created by **[peterpall](https://sourceforge.net/u/peterpall/)** on 2015-08-15 19:04:53
Original: https://sourceforge.net/p/maxima/bugs/3002
---
If a…
rtoy updated
4 months ago
-
In `execution/http_rpc.go`, the function `CreateAccessList()` is throwing an error. It is not able to unmarshal data from the rpc to `types.AccessList` struct.
-
### Is your feature request related to a problem or challenge?
I am trying to create a scalar UDF, pack, which operates on struct arrays. It packs many array into a struct array each with a distinct …
-
For example, I have a DUT
```
TYPE udtDI :
STRUCT
inDisc : BOOL; // Discrete input
cfgInvertInput : INT; // Invert the input signal (1: invert enable)
END_STRUCT
END_TYPE
```
And I …
-
I'll start with as little code as possible as likely "It's me not solc"
```solidity
struct Allocation {
uint48 stakeTime;
uint48 unlockTime;
uint32 spare;
u…
-
# Proposal: Struct Lambdas
It would be useful to have a syntax and library support to create and invoke lambda "delegates" without needing heap allocations for their closures/environments. It woul…
-
may marshal or unmarshal value directly, not just in struct
```go
json.Marshal([]byte("11111"), json.Format("hex"))
```
-
I've noticed that I often have an enum whose variants are all different salsa structs:
```rust
enum Item),
Function(Function`. These methods can lookup the id in `db.table`, identify the ingr…
-
### Bug description
I tried to mess around with some tree-structures lately.
Specifically I wanted to implement the references between the nodes with the `Optional[T]` so I would not have to mess…
-
I tried this code:
```rust
#[repr()] const CONST: u32 = 8;
#[repr()] struct Struct;
#[repr()] trait Trait {}
#[repr()] impl Trait for Struct {}
#[repr()] fn func() { #[repr()] let a = 4; }…