really great talk, i have run into these issues a lot with rust, and was completely ignorant to this "effect systems" way of thinking
@warvinn9 ай бұрын
Wonderful talk, great insights that were well explained, and the scene and editing are coming straight from a Wes Anderson film. Also, *B L Å H A J*
@yoshuawuyts9 ай бұрын
thank you; that’s very kind of you to say
@oliverwooding20669 ай бұрын
this is such an unbelievably cool proposal, and if it gets added then cppbros will never shut up about how overcomplicated it is
@cloudsquall889 ай бұрын
Great talk! Thank you very much! As others have stated in the comments, I think it would be useful at some point to address the series of blog posts that withoutboats has made. The things said in those blog posts really make a lot of sense, and deserve some more open discussion in my opinion, in a way that mere mortals like us can follow. Right now it seems like there are just 2 sides talking, with only one listening to the other.
@knolljo9 ай бұрын
Great talk, super interesting! Seems like a lot of thinking went into solving this problem and a lot more needs to be done. As i understand, a parametric function would be like a mathematical function. Rusts current functions can have side effects which means they are procedures.
@CielMC9 ай бұрын
We all know the star of the show here is Blahaj
@Debrugger9 ай бұрын
Great talk, hopefully this gains traction! Then Rust would really be almost the dream language, one that actually learns from 40 years of PL research but also has, y'know, users and code being written.
@klasus23449 ай бұрын
ASMR
@kiffeeify9 ай бұрын
Is there actually a reason (historically, or technical?), why uncarried types are not reflected in the type system? Why wouldn't an Unsafe make sense, that resulted from an unsafe function call, which has to be unwrapped in safe functions, but could be carried between unsafe functions?
@yoshuawuyts9 ай бұрын
You can think of effects as properties of the function itself, and not so much properties of the arguments or return type. unsafe fn, among other things grants you the permission to call other unsafe functions in the function body. That kind of “permission to do something” cannot be expressed by wrapping types.
@Skipropegivesbirth9 ай бұрын
Rust evolution is calling for a deeper understanding of effects.
@NotherPleb6 ай бұрын
I have some concerns about the Rust "weirdness budget" running out, where people look at this think "what the f" and walk away. I'd say a priority is to don't let this leak too much in application code.
@SVVV979 ай бұрын
Super exciting talk - I hope this works out!
@Galakyllz9 ай бұрын
I love this.
@NickDrian6 ай бұрын
U r great teacher
@pmmeurcatpics9 ай бұрын
Fascinating talk!
@fengliang15909 ай бұрын
maybe[async] has far more implications than stated.
@fengliang15909 ай бұрын
explained in without boats' blog -- let futures be futures
@xplinux229 ай бұрын
I agree completely. I think there's a similar debate about whether "async next" versus "poll next" would be preferable for AsyncIterator. I think there exists some functionality which only makes sense in async or sync land, for example, that aren't amenable to effect abstraction like this when maximum performance is the most important factor.
@Wertercat9 ай бұрын
Is the divergence effect idea 'solve the halting problem' or am I missing something
@CheaterCodes9 ай бұрын
I think it's 'reduce the valid programs to a subset for which halting can be proven'. obviously you lose some expressive power for that.
@yoshuawuyts9 ай бұрын
The halting problem assumes a Turing machine. If a language is unable to loop indefinitely, it is no longer Turing-complete, and so the halting problem no longer applies. Or put differently: we can guarantee a program terminates (converges) by eliminating all conditions which could possibly cause it to not terminate (diverge).
@oserodal27029 ай бұрын
It would be undefined behavior if its code paths were able to diverge. I think in practice (having not read any of the mentioned work/progress), it would have a syntax similar to `unsafe` where the programmer assumes responsibility of the correctness of the code with an identifier and an expression (think `non_diverging { ... }`.
@jadelynnmasker2 ай бұрын
Well, Turing isn't the only mind in town: Godël proved that there exists no set of axioms that are sufficient to prove all true mathematical statements. What this means is, that it could very well be impossible to "prove" that a program doesn't diverge, without severely restricting the rules the program can follow. In addition, running the maths required to prove that a sufficiently useful computer system cannot diverge would not only require a ridiculous amount of computing power (think death star sized computer), but also the simulation would have to run on an unproven system! This means the program trying to prove that another program cannot diverge, could very well diverge! And even such a proven system, could be hit by a cosmic ray and diverge as a result. Maybe perfection is simply impossible.