On 4/24/22 17:18, Vinod K Chandran wrote:
> private this(int a, string b, bool c) {
Looks good to me.
There are other ways as well:
class Foo {
private:
// ...
public:
// ...
}
Or:
class Foo {
private {
// ...
}
// ...
}
Ali