A while ago I wondered something along the lines of: If you were to pick the highest impact edits from a GWAS , what would they look like? Specifically, the following seemed interesting: Would the top edits be shared by most people (potentially affecting the ease of a widespread multiplexed therapy)? How much can we expect to affect a score with 1, 10, or 100 edits (potentially giving an idea of…
TL;DR: Rust has the opportunity to significantly improve its ergonomics by targeting one of its core usability issues: passing values across boundaries. Specifically, the ability to opt into 'copy semantics' for non- Copy user types would solve a host of issues without interfering with lower-level code and letting users opt into ergonomics ~on par with garbage collected languages. Copy & Move…