Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I'm sure you have used it in things like `if let Some(x) = foo` where x is the binding, then.

I recognize the name binding being used there all the time, but maybe variable would work well in this particular context too?



The reason people say binding is because the words “immutable variable” are an oxymoron. It never makes sense to use variable for immutable bindings; they are not able to be varied. Binding is just the meaning of the word “variable” but without the implied mutability.

This aligns with the fact that the mutability is (syntactically and conceptually) a property attached to the binding, and hence there is a need to talk about bindings generally without implying anything about the mutability. Lots of languages don’t have immutable bindings, all bindings are mutable, so you may as well call them variables in C, Go, etc.


"Immutable variable" is not an oxymoron, because the value of a variable can and typically will vary via other means than mutation. The value of a variable is potentially different every time it comes to scope, e.g. whenever a function is called.


> The reason people say binding is because the words “immutable variable” are an oxymoron.

Mathematics has had immutable variables since long before computers.


Even immutable variables can be just redefined/shadowed. You can't do that with constants.


Usually, you think of the shadowing variable and the shadowed variable as different variables though. They just happen to use the same variable name.


I think you're right that this is the reason why some people avoid that.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: