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=0.4 required=5.0 tests=BAYES_00,FORGED_MUA_MOZILLA autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,fad4070a88579d39 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.72.73 with SMTP id b9mr3532802pav.9.1349646997831; Sun, 07 Oct 2012 14:56:37 -0700 (PDT) Path: t10ni23621661pbh.0!nntp.google.com!news.glorb.com!feeder.erje.net!news.osn.de!diablo1.news.osn.de!noris.net!newsfeed.arcor.de!newsspool2.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Sun, 07 Oct 2012 23:56:35 +0200 From: Georg Bauhaus User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Ada Containers References: <7bff0fc1-d670-4225-aa4f-282d80934a5b@googlegroups.com> <9f9d63ef-9fcb-4d4a-ab63-4cda56ab4de1@googlegroups.com> <43ef1e09-e212-4937-9021-76a0146cdfe9@googlegroups.com> In-Reply-To: <43ef1e09-e212-4937-9021-76a0146cdfe9@googlegroups.com> Message-ID: <5071fa94$0$6555$9b4e6d93@newsspool4.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 07 Oct 2012 23:56:36 CEST NNTP-Posting-Host: 2072f017.newsspool4.arcor-online.net X-Trace: DXC=2L2HiK`BLH9gP]QSEBQ^d44IUK:Lh>_cHTX3j=G:_\[Q0NVo0 X-Complaints-To: usenet-abuse@arcor.de Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Date: 2012-10-07T23:56:36+02:00 List-Id: On 07.10.12 23:30, rwilco19@gmail.com wrote: > Maby I caused some confusion earlier with a type. I misspelled the package name. It's Ada.Containers.Hash_Tables not Ada.Containers.Hashed_Tables. > In GNAT, package Ada.Containers.Hash_Tables "declares the hash-table type used to implement hashed containers." In Ada, the hashed containers are Ada.Containers.Hashed_Maps and Ada.Containers.Hashed_Sets, and variants like Bounded_* (new in Ada 2012) and Indefinite_*. So Hash_Tables is part of GNAT's implementation of Ada's hashed containers, perhaps for use by implementers only. (You can see in the sources of GNAT's implementation of Ada's library, this context clause in Ada.Containers.Hashed_Maps: (private with Ada.Containers.Hash_Tables;)