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,affd14e05b8fb09a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-04-29 13:37:35 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!border1.nntp.ash.giganews.com!nntp.giganews.com!local1.nntp.ash.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Thu, 29 Apr 2004 15:37:34 -0500 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <25OdncWDToOY7Q3dRVn-hQ@megapath.net> <1649831.NvcpCQcTn1@linux1.krischik.com> Subject: Re: Hierarchical States Machines Date: Thu, 29 Apr 2004 15:37:30 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Message-ID: <266dnfzCrpUS-gzdRVn-gg@megapath.net> NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-iEDX2my0272zHqVReD7M2luczTxgOz+pmVaT+itmXAdOntah4gxvt/BUwlfoXHJweuNqnJg4gmzZ6/r!JqvvqADte/X2GQsgSEO2XWCvBmlSI9VCjGTtNaxkCVNY9Ge/7VABIxKY0n4RnPZL7RN7/3Skn8W1 X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.1 Xref: archiver1.google.com comp.lang.ada:7574 Date: 2004-04-29T15:37:30-05:00 List-Id: "Martin Krischik" wrote in message news:1649831.NvcpCQcTn1@linux1.krischik.com... ... > Is there any deepter reason why you did not use: > > loop > <> > > > if then > > goto Continue; > end if; > > end if; > ; > end loop; > > i.E. A style guide or a RM I am not aware of? I usually want the loop head to be re-executed, so that if it gets modified during maintenance (to a for-loop or a while-loop), it won't be necessary to restructure the code. Besides, in most of these cases, the loop actually is a while-loop, walking a list or other data structure. Randy.