Quote Examples using Mutablility

I'm not super familiar with interior mutablility, but I don't think this is the same "interior mutablility" as used in Rust. Interior mutablility: A, immutable, points to B. B, immutable, points to C. C, mutable, points to D. D, immutable, points to E. Even though A and B are immutable -- B points to C mutably, so you can modify its contents.

Anonymous

Mutablility definitions