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: a07f3367d7,c9d5fc258548b22a X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news3.google.com!feeder.news-service.com!feeder.news-service.com!newsfeed.arcor.de!newsspool3.arcor-online.net!news.arcor.de.POSTED!not-for-mail Date: Tue, 08 Feb 2011 22:46:20 +0100 From: Georg Bauhaus User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.14) Gecko/20110123 Thunderbird/3.1.8 MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: How do I write directly to a memory address? References: <67063a5b-f588-45ea-bf22-ca4ba0196ee6@l11g2000yqb.googlegroups.com> <05a3673e-fb97-449c-94ed-1139eb085c32@x1g2000yqb.googlegroups.com> <8r86vgFc3uU1@mid.individual.net> <19fh1chm74f9.11cws0j5bckze.dlg@40tude.net> <4d4ff70e$0$6886$9b4e6d93@newsspool2.arcor-online.net> <737a6396-72bd-4a1e-8895-7d50f287960e@d28g2000yqc.googlegroups.com> <4d5008a5$0$6879$9b4e6d93@newsspool2.arcor-online.net> <4d5031fe$0$6765$9b4e6d93@newsspool3.arcor-online.net> <1f229967-d3cf-42b6-8087-c97ee08652f3@i40g2000yqh.googlegroups.com> <4d5116d1$0$7657$9b4e6d93@newsspool1.arcor-online.net> <8af279c4-67c5-4d93-9d7d-116796baff58@h19g2000prh.googlegroups.com> In-Reply-To: <8af279c4-67c5-4d93-9d7d-116796baff58@h19g2000prh.googlegroups.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <4d51b9ac$0$6767$9b4e6d93@newsspool3.arcor-online.net> Organization: Arcor NNTP-Posting-Date: 08 Feb 2011 22:46:20 CET NNTP-Posting-Host: cd6919a8.newsspool3.arcor-online.net X-Trace: DXC=EXXhWo21?96T2Rfi6ejV8lEkD:[C9=i4N2JJXhGd\<4 X-Complaints-To: usenet-abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:17050 Date: 2011-02-08T22:46:20+01:00 List-Id: On 2/8/11 9:21 PM, Shark8 wrote: >> void foo2(int jump) >> /* make sure jump % 2 == 0! */ >> { >> ... >> >> } >> >> Write that in Ada 2005 to demonstrate the glorious power of >> your subtype constraints. When was it that compilers will >> support aspects reliably? > > Okay. > Procedure Foo( Jump : In Integer ) is -- make sure jump mod 2 == 0 *before* calling this function You'd need a formal type in Foo's signature that lets the client see what values can be supplied without having to look at the body. A first approximation is a precondition: procedure Foo2 (Jump : in Integer) with Pre => (Jump mod 2 = 0) is ... A type in Ada 2012 can use an Invariant aspect referencing an expression function, type Even is range -12 .. 345 with Invariant => Is_Even (Even); function Is_Even (E : Even) return Boolean is (E mod 2 = 0); Then, procedure Foo2 (Jump : in Even); seems a much better approximation of the C comment.