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.2 required=5.0 tests=BAYES_00,FREEMAIL_FROM, FROM_STARTS_WITH_NUMS autolearn=no autolearn_force=no version=3.4.4 X-Received: by 10.36.92.77 with SMTP id q74mr2494242itb.10.1519419596977; Fri, 23 Feb 2018 12:59:56 -0800 (PST) X-Received: by 10.157.41.184 with SMTP id n53mr119975otb.11.1519419596771; Fri, 23 Feb 2018 12:59:56 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!news.uzoreto.com!weretis.net!feeder6.news.weretis.net!feeder.usenetexpress.com!feeder-in1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!w142no921651ita.0!news-out.google.com!s63ni2760itb.0!nntp.google.com!w142no921649ita.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 23 Feb 2018 12:59:56 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=85.240.211.93; posting-account=rhqvKAoAAABpikMmPHJSZh4400BboHwT NNTP-Posting-Host: 85.240.211.93 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <545bd208-7d1f-4ae3-bb15-58eda71ae2a4@googlegroups.com> Subject: Re: questions on RM's section of subprograms and dispatching From: Mehdi Saada <00120260a@gmail.com> Injection-Date: Fri, 23 Feb 2018 20:59:56 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader02.eternal-september.org comp.lang.ada:50615 Date: 2018-02-23T12:59:56-08:00 List-Id: > Okay, I'm lost. In why section is it explained ? I can see many non-abstract methods with class-wide controlling parameters/results, which I'm fine... I forgot telling that. But then there is function Available (C : Abstract_Collection) return Natural is pragma Warnings (Off, C); begin return Natural'Last; end Available; which I don't know what to think of. Is it special in any way ? Or could it have any content, and the body will be inherited the descendants ? I guess it's the second choice. I'll see in Ada distilled and the others ressources before coming back to OOP.