| ▲ | rtpg an hour ago | |||||||
Experimentally, at least one major programming language (Rust) places mutability into the type system. Whether or not something belongs into a type system is ultimately determined by the type system. We can choose whether or not mutability is considered a part of a type. > When we speak of "type of a variable", we mean this variable can only be assigned (bound to) values of certain type. This has nothing to do with whether it can be reassigned (i.e. mutability). This is a bit too simplistic IMO. You're talking about name bindings, the article is talking more about things like interior mutability. Rebinding a name is ... generally not a type system concern by my understanding. | ||||||||
| ▲ | js8 an hour ago | parent [-] | |||||||
You have a point; I am looking at it from quite functional programming perspective, because that's how type systems are typically understood. So from that perspective, interior mutability is a form of rebinding. When you say "we can choose mutability as a part of a type", the question is, what kind of errors are we trying to prevent? What is the semantics we want to give? From that it should be obvious whether it can be subtype or not. | ||||||||
| ||||||||