iacore

Results 421 comments of iacore

Referencing https://github.com/gleam-lang/gleam/issues/2712#issuecomment-1998681052, we would not have this problem if types are first-class in Gleam. > Should it be permitted to export only a subset of a type's constructors? This would...

Is this invalid or too verbose? ``` import two.{MyType, MyConstructor, my_function} pub type MyType = two.MyType pub const MyConstructor = two.MyConstructor pub const my_function = two.my_function ```

> is there any way to build like [`rocksdb`](https://github.com/facebook/rocksdb) or [`Cbc`](https://github.com/coin-or/Cbc) with `zig 0.10.1`? Can you use Clang?

`-program.c` should be a file name, if your C file starts with `-`.

> Yes, clang for me shows that error message when `-program.c` is the name of a C source file. My clang version is 15.0.7, what version are you on? I...

Did we find a bug in clang?

> This is not demonstrated to be a bug yet. Please improve the bug report Updated

Does it even matter? If the hash is correct, we don't care about the identity of the domain in valid. TLS certificates also need to be checked for update regularly,...

The problem is that `_Atomic` is a type attribute, where `@atomicLoad` is usage of a term. If `_Atomic(uint8_t)` is translated to `u8`, then assignments to atomic variables need to use...