I think it would make it easier to change or review someone's code, if you were aware of their intention that a mutable field only be accessed from a particular Fiber. Not only is it a reminder for editors, but it makes it clear that the author considered concurrency issues related to that mutable field, rather than forgetting to do so.
I think it would make it easier to change or review someone's code, if you were aware of their intention that a mutable field only be accessed from a particular Fiber. Not only is it a reminder for editors, but it makes it clear that the author considered concurrency issues related to that mutable field, rather than forgetting to do so.
Is this useful enough to justify the extra verbosity?