-
I was trying to `load()` `paths.bzl` from skylib:
```console
$ go install go.starlark.net/cmd/starlark@latest
$ starlark paths.bzl
paths.bzl:309:9: undefined: struct
```
-
If I define a struct derived from the base struct `rfl::Field,` how can I implement the parser for the new struct?
-
-
A simple way to get a variable out of an struct and default value if the variable doesn't exists.
```
function struct_get_value(wStruct, variableName, defaultValue){
if( variable_struct_exists(w…
-
unlike functions and data
-
**Describe the bug**
When I try to use a struct, it doesn't seem to work and gives an error. I took a look at the implementation for Struct, and though it seems partially implemented I saw that there…
-
On https://github.com/canonical/identity-platform-login-ui/blob/main/pkg/kratos/service.go#L585 we have a comment about refactoring once we update the sdk version. Is that still valid? S…
-
Hello,
I have another problem, maybe it's very easy to solve. After running the ipyrad pipeline, i tried to run the structure analysis. Everything seems to work without error messages, but after `s…
-
ZII is perfect for some tasks, but sometimes I know that given struct is always initialized. So, adding new fields to a struct definition adds possibility of breaking this guarantee as uninitialized f…
-
Rust sometimes treats structs as [covariant or contravariant](https://doc.rust-lang.org/reference/subtyping.html) in their generic parameters. VeriFast currently does not yet check that the `.own` and…