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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,ac39a12d5faf5b14 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-19 03:07:50 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!193.174.75.178!news-fra1.dfn.de!news-ham1.dfn.de!news.uni-hamburg.de!cs.tu-berlin.de!uni-duisburg.de!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: Development process in the Ada community Date: Fri, 19 Apr 2002 10:07:49 +0000 (UTC) Organization: GMUGHDU Message-ID: References: <3CB46975.90408@snafu.de> <3CBAFFEE.2080708@snafu.de> <4519e058.0204171036.6f0a7394@posting.google.com> <3CBDD795.4060706@snafu.de> <4519e058.0204180800.44fac012@posting.google.com> <3CBF0341.8020406@mail.com> <4519e058.0204181251.415ff7f1@posting.google.com> <3CBF4888.A5C2AD2@boeing.com> NNTP-Posting-Host: l1-hrz.uni-duisburg.de X-Trace: a1-hrz.uni-duisburg.de 1019210869 4666 134.91.4.34 (19 Apr 2002 10:07:49 GMT) X-Complaints-To: usenet@news.uni-duisburg.de NNTP-Posting-Date: Fri, 19 Apr 2002 10:07:49 +0000 (UTC) User-Agent: tin/1.5.8-20010221 ("Blue Water") (UNIX) (HP-UX/B.11.00 (9000/800)) Xref: archiver1.google.com comp.lang.ada:22773 Date: 2002-04-19T10:07:49+00:00 List-Id: Jeffrey Carter wrote: : I've never used a map, but I do use skip lists frequently, probably for : the same sort of thing. Are you sure? From the Booch components: generic type Key is private; with function "=" (L, R : Key) return Boolean is <>; package BC.Containers.Maps is -- ... -- A map denotes a collection forming a dictionary of domain/range -- pairs. -- The parameter Key denotes the universe from which the map draws -- its doamin; the parameter Item denotes the universe from which -- the map draws its range. The parameters Key and Item typically -- represent different types, although they may may represent the -- same types. Either may be a primitive type or user-defined. -- ... end BC.Containers.Maps;