On Saturday, 20 October 2018 at 00:46:36 UTC, Nicholas Wilson wrote:
Mutable = value may change
const = I will not change the value
immutable = the value will not change

unshared = I (well the current thread) owns the reference
shared = reference not owned, no unordered access, no (unordered) writes
threadsafe = ???
unshared = the current thread owns the reference
threadsafe = I guarantee no race conditions or deadlocks will occur
shared = every thread may have references

Reply via email to