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,2e6723b897ab47fb X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.88.5 with SMTP id bc5mr1472644pab.11.1344851896480; Mon, 13 Aug 2012 02:58:16 -0700 (PDT) Path: p10ni48093485pbh.1!nntp.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!news-in-01.newsfeed.easynews.com!easynews.com!easynews!novia!newsfeed.yul.equant.net!npeer.de.kpn-eurorings.net!npeer-ng0.de.kpn-eurorings.net!news-feed.eu.lambdanet.net!news.bcc.de!newsfeeder.ewetel.de!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!news.glorb.com!news-out.readnews.com!transit4.readnews.com!panix!newsfeed-00.mathworks.com!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Ada.Locales pseudo-string types Date: Tue, 07 Aug 2012 20:37:05 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <78707b6e-88a3-453a-a37c-840f7a62e703@googlegroups.com> <7303f906-0f6a-4d97-ae15-36b4056ede6c@googlegroups.com> <257b4f44-b6c6-4c79-8c6e-dec947a3ce25@googlegroups.com> <91476028-43c5-4bbb-9829-7b7807bbd9ca@googlegroups.com> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 X-Trace: pcls6.std.com 1344386225 20257 192.74.137.71 (8 Aug 2012 00:37:05 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Wed, 8 Aug 2012 00:37:05 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:Dq1IJTrsorBXTk6XL/niq+m+yb4= X-Received-Bytes: 2150 Content-Type: text/plain; charset=us-ascii Date: 2012-08-07T20:37:05-04:00 List-Id: Adam Beneschan writes: > On Tuesday, August 7, 2012 2:59:54 PM UTC-7, Robert A Duff wrote: > >> > subtype Country_Code is String (1 .. 2) >> > with Static_Predicate => >> > Country_Code (1) in 'A' .. 'Z' and >> > Country_Code (2) in 'A' .. 'Z'; >> >> Or "type Country_Code is String (1 .. 2) with ...". > > should be "type Country_Code is new String (1 .. 2) with ...", I think ... Yes. Thank you for the correction. - Bob