It would be useful to have a Private Type definition that is available only to the class in which it is defined.
As an example, in a custom view class I would like to set a Tag with a specific data structure, which is totally irrelevant outside of the class. I could (and will for now) use a standard type, but if I end up using a number of them it will clutter the intellisense in other modules with items that will not be of any use.
I could use a Map and Array with Private variables for access, but a Private type would be so much simpler.
As an example, in a custom view class I would like to set a Tag with a specific data structure, which is totally irrelevant outside of the class. I could (and will for now) use a standard type, but if I end up using a number of them it will clutter the intellisense in other modules with items that will not be of any use.
I could use a Map and Array with Private variables for access, but a Private type would be so much simpler.