On Friday, 8 January 2021 at 23:10:13 UTC, tsbockman wrote:
5) Tell the compiler that `other.text` may be used to mutate `row.text` by `const` from the `value` parameter of `test`. Do not do this unless that's really what you want!
Oops, that should say:5) Tell the compiler that `other.text` may be used to mutate `row.text` by *removing* `const` from the `value` parameter of `test`. Do not do this unless that's really what you want!