It is aid that in Tcl, "everything is a string". But then again, it is not exactly 100% exactly like that (hence the shimmering effect). My question is this: let us say that I have, in a list, the following values:
list "12" 14 2a "1a"
My expectation, that, if "everything is a string", the memory allocated for all 4 elements should be identical (by the spec/expected behaviour), as we are looking at 4 instances of strings which length is 2.
Is that a correct assumption?
Those values will probably start out as strings (it's not entirely certain that this will happen, due to the possibility of literal sharing). Let's take a close look (if you're doing this yourself, the
tcl::unsupported::representation
command is in 8.6 only and never modifies the object being looked at; I put a;format x
on that first line to ensure that we don't get any surprise conversions).So yes, those values are pretty much the same. There's no internal representation of any of them, and the string representation each is using is a buffer that was allocated to be 3 bytes long (one for each character, and one for a terminating NUL byte). However, the list itself has a string representation (as well as its internal list rep) despite not being asked for one; that's because you're using a list of literals and Tcl's compiler optimises that to a single literal as that's usually the Right Thing To Do.