mutable property
Mutable<T>
get
mutable
Wraps this value in a Mutable container.
Returns a new Mutable<T> instance containing this value.
Implementation
Mutable<T> get mutable {
return Mutable<T>(this);
}