Manu Evans

Results 325 comments of Manu Evans

> For example, with `core.atomic` is it really easy to mix non-atomic access with atomic access to a memory location rendering the atomic access meaningless as it's going to end...

I'd like someone else to make a call on whether they agree or disagree that a tool like this should exist. @rymrg If you feel strongly that it should exist,...

`synchronised` should be deleted from the language asap. I don't know where `nosharedaccess` rests in the broader ecosystem; I've had it enabled in all my code for 6-7 years or...

> `synchronized` statements are kinda necessary for thread safety wrt. blocking for web development. Write a synchronisation tool and use it. No need for a language keyword, and it's almost...

> I'm not talking about the mutex, we need to be able to model the act of synchronization the lock+unlock. Can't have a lock being held with a yield that...

#20626 ...just trying it on!

Suggesting that `x+y*z < object.method(x) ? x+y*z : object.method(x)` is a shit thing to read is not worshipping the alter of C++... and it's not even in C++! I feel...

The question mark because it's short-hand for the `?:` operator which eliminates the repetition: `x < y ? x : y` => `x

> > Suggesting that `x+y*z < object.method(x) ? x+y*z : object.method(x)` is a shit thing to read is not worshipping the alter of C++... and it's not even in C++!...

🤨 Now I'm just confused...