Re: a way of approximating "API internal" visibility?

2019-05-18 Thread DanielG via Digitalmars-d-learn
On Saturday, 18 May 2019 at 07:37:16 UTC, Laurent Tréguier wrote: Maybe what you need is `package(a.b.c)`? Ah, that's exactly what I needed! Thank you.

Re: a way of approximating "API internal" visibility?

2019-05-18 Thread Laurent Tréguier via Digitalmars-d-learn
On Saturday, 18 May 2019 at 06:23:37 UTC, DanielG wrote: I'm working on a library spread across multiple modules/packages. Sometimes I have symbols that I would like to share between internal packages, but I don't want to make 'public' because then it would be exposed to the client-facing

a way of approximating "API internal" visibility?

2019-05-18 Thread DanielG via Digitalmars-d-learn
I'm working on a library spread across multiple modules/packages. Sometimes I have symbols that I would like to share between internal packages, but I don't want to make 'public' because then it would be exposed to the client-facing API. To a degree this could be gotten around by making