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,189a28164788ed2e,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-07-20 08:56:58 PST Path: archiver1.google.com!newsfeed.google.com!postnews1.google.com!not-for-mail From: mraikes@vt.edu (Matt Raikes) Newsgroups: comp.lang.ada Subject: Using "with function" Date: 20 Jul 2001 08:56:58 -0700 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 204.245.128.36 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 995644618 10834 127.0.0.1 (20 Jul 2001 15:56:58 GMT) X-Complaints-To: groups-support@google.com NNTP-Posting-Date: 20 Jul 2001 15:56:58 GMT Xref: archiver1.google.com comp.lang.ada:10345 Date: 2001-07-20T15:56:58+00:00 List-Id: I ran across this in some code I was examining and I have no clue how the with function part works or what its purpose is. generic type Element_Type is private; with function "="( Left, Right: Element_Type ) return Boolean; please help