You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Foo{
... linear
}
void main(){
let x = new Foo ();
... something something... // x is linear
bound x as blah {
// x is thread-local in here
}
// x is linear again
Therefore could get benefits of thread-local freely aliasing + mutating, but then keep the pros of linearity?
The text was updated successfully, but these errors were encountered:
So can do
The text was updated successfully, but these errors were encountered: