When is it preferrable to use ```d struct S { private T t; alias t this; } ```
instead of ```d struct S { public T t; alias t this; } ``` for any given type `T`?
When is it preferrable to use ```d struct S { private T t; alias t this; } ```
instead of ```d struct S { public T t; alias t this; } ``` for any given type `T`?