Viewing profile — modulared
modulared
HN member- Joined
- Thu, May 02, 2024, 12:33 PM UTC
- HN karma
- 7
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About modulared
No profile information was provided.
Recent public activity
-
comment
Comment #48668785
[dead]
-
comment
Comment #48413402
Looks like it was introduced in 1.81.0: https://blog.rust-lang.org/2024/09/05/Rust-1.81.0/#new-sort-...
-
comment
Comment #47789238
[dead]
-
comment
Comment #47789226
[dead]
- story
-
comment
Comment #47400618
> since the compiler cannot inline across await. Is this stated somewhere? A simple search online yields nothing, and just testing it out on godbolt the compiler does inline at lea…
-
comment
Comment #47205633
Not having a required input, say when you try to reproduce a previous build of a package, is a separate issue to an input silently changing when you go to rebuild it. No build syst…
-
comment
Comment #45785763
That doesn't really make sense since memory safety is a property of a language. You can have code that is unsafe (read unsound), but that is a separate issue. For a language to be …
-
comment
Comment #45052904
> I believe that languages with typestate can cause types to change as a result of function calls Do you have any specific languages?
-
comment
Comment #44661122
> I could disable autoadding files, but life will be worse that way. ``` [snapshot] auto-track = 'none()' ``` This is what I do, and I don't think it is worse. I prefer not having …
-
comment
Comment #40248664
> Why not just go talk the other people you'd really prefer to talk to? sorry, I didn't mean to be so argumentative or negative. (The "You'll have to ask the Rust community. Rust l…
-
comment
Comment #40243602
> To which language? I mean more in the sense of "where did you get this definition from." > The difference there is in the types the enums are applied to. In one case, a basic int…
-
comment
Comment #40235773
> Enums produce values. Tag-only unions 'produce' types (without values). Source? Is this something that is widely accepted, or just how you think enums should be defined. My under…