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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9f842cdf16abf4b9 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!o40g2000prh.googlegroups.com!not-for-mail From: Matthew Heaney Newsgroups: comp.lang.ada Subject: Re: Ada.Containers.Indefinite_Hashed_Maps Date: 26 Apr 2007 09:13:32 -0700 Organization: http://groups.google.com Message-ID: <1177604012.632433.30190@o40g2000prh.googlegroups.com> References: <1177510391.733055.133060@n35g2000prd.googlegroups.com> <20070426145501.7c080816@cube.tz.axivion.com> NNTP-Posting-Host: 66.162.65.129 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1177604023 21850 127.0.0.1 (26 Apr 2007 16:13:43 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 26 Apr 2007 16:13:43 +0000 (UTC) In-Reply-To: <20070426145501.7c080816@cube.tz.axivion.com> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: o40g2000prh.googlegroups.com; posting-host=66.162.65.129; posting-account=Zl1UPAwAAADEsUSm1PMMiDjihtBlZUi_ Xref: g2news1.google.com comp.lang.ada:15313 Date: 2007-04-26T09:13:32-07:00 List-Id: On Apr 26, 8:55 am, Stefan Bellon wrote: > > Position := Maps.Find (Map, Key => Some_Key); > if Position /= Maps.No_Element then Or: C := M.Find (K); if Has_Element (C) then ... ;