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 20:04:22 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.cwix.com!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: Development process in the Ada community Date: 19 Apr 2002 22:04:17 -0500 Organization: LJK Software 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> <3CBF3B4A.67AF0C7E@flash.net> <3CBF5244.93CD9323@san.rr.com> NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1019271861 9706 192.135.80.34 (20 Apr 2002 03:04:21 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Sat, 20 Apr 2002 03:04:21 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:22803 Date: 2002-04-19T22:04:17-05:00 List-Id: In article , "Marin David Condic" writes: > "Darren New" wrote in message > news:3CBF5244.93CD9323@san.rr.com... >> >> In other words, a "map" is the API to a hash table or a search tree or >> etc. You can implement them with trees, hash tables, linear lists, >> whatever. >> > > Don't forget ISAM files. :-) Funny you should mention that. I am currently working on a program that does such ordered lookups on temporary data read into the program, and I did not even consider the possibility of using (virtual) memory to store it, since I do not want to make assumptions regarding how much data there will be. ISAM files are just a natural fit. If you tell me that what you are calling "maps" are a portable way of doing that, I suppose that would be useful, although using files directly is fine with me.