How to access associative array member of a class inside the class itself? Itcl is modeled after C++, and in C++ we would write:
SomeObject.SomePublicMember = ...
How to do the same in Itcl? Without providing accessor procedure for such an array. I've seen that for usual plain variables this can be obtained by using cget:
$this cget -PublicMemberVariableName
However the following construct doesn't work:
$this cget -AssociativeArrayName(NamedIndex)
Is this possible at all?