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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.31.16.232 with SMTP id 101mr8655846vkq.25.1505213071258; Tue, 12 Sep 2017 03:44:31 -0700 (PDT) X-Received: by 10.36.43.210 with SMTP id h201mr750604ita.7.1505213071092; Tue, 12 Sep 2017 03:44:31 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!border2.nntp.ams1.giganews.com!nntp.giganews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.am4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!q8no2786145qtb.0!news-out.google.com!c139ni331itb.0!nntp.google.com!127no268559itw.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 12 Sep 2017 03:44:30 -0700 (PDT) In-Reply-To: <35e49f52-16da-4f1a-b2e3-b8d07d736a0d@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a02:1205:5055:3750:3554:e67:74c0:9081; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG NNTP-Posting-Host: 2a02:1205:5055:3750:3554:e67:74c0:9081 References: <915874b5-52c0-4aa8-9023-82fddedb816f@googlegroups.com> <323ae5e6-f2ce-4a15-b874-906a670f331c@googlegroups.com> <35e49f52-16da-4f1a-b2e3-b8d07d736a0d@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <7e392770-994e-4e42-a510-9bcba2121eee@googlegroups.com> Subject: Re: Community Input for the Maintenance and Revision of the Ada Programming Language From: gautier_niouzes@hotmail.com Injection-Date: Tue, 12 Sep 2017 10:44:31 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Received-Body-CRC: 1046335654 X-Received-Bytes: 2277 Xref: news.eternal-september.org comp.lang.ada:48046 Date: 2017-09-12T03:44:30-07:00 List-Id: > Perhaps there is a reason for the non-use? Bounded_String is an in-between type Flexibility Simplicity for the machine (for the human) (and perhaps performance) --------------- -------------------------- String Low High Bounded_String Mid Mid Unbounded_String High Low For comfort I use only String and Unbounded_String, although I did lots of = Turbo Pascal previously. Perhaps I do not miss that much having strings une= xpectedly truncated after the 255th character, or having conversion surpris= es from a String[255] to a String[80]...