From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.42.151.67 with SMTP id d3mr3567985icw.6.1406192765469; Thu, 24 Jul 2014 02:06:05 -0700 (PDT) X-Received: by 10.140.101.165 with SMTP id u34mr17667qge.15.1406192765374; Thu, 24 Jul 2014 02:06:05 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!h18no6613147igc.0!news-out.google.com!cz11ni22298qab.1!nntp.google.com!j15no2284980qaq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 24 Jul 2014 02:06:05 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=91.55.236.94; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 91.55.236.94 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <33af85fe-a92c-415a-b6aa-c658d95ca18c@googlegroups.com> Subject: Re: Should be in the root package or its child? From: AdaMagica Injection-Date: Thu, 24 Jul 2014 09:06:05 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:21174 Date: 2014-07-24T02:06:05-07:00 List-Id: On Wednesday, July 23, 2014 8:58:24 PM UTC+2, Victor Porton wrote: > Should I put World_Type (used by almost every program which uses my library) > into the root package of my library or into some its child package? I think this answers your question. If it is so basic, it belongs into the root, irrespecitve of what you call the "size". > I think that it depends on the "size" (number of primitive routines, roughly > saying) associated with World_Type. If it is small, I should keep it in the > root package, and if it is big to "allocate" a new subunit.