I want to have an array as a private class member. I use Itcl package.
For lists and other simple variables I was writing:
itcl::class MyClass {
private variable m_myVar ""
private variable m_myListVar {}
..........
Now what I can do for array member?
I think you should declare the variable as normal using
private variable m_myArrayand then in the constructor initialize it as an arrayarray set m_myArray {}