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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,45abc3b718b20aa3 X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: Two ideas for the next Ada standard Date: 1996/08/31 Message-ID: #1/1 X-Deja-AN: 177693163 references: <5009h5$ir4@netline-fddi.jpl.nasa.gov> <506svr$h1v@linus.mitre.org> organization: The World Public Access UNIX, Brookline, MA newsgroups: comp.lang.ada Date: 1996-08-31T00:00:00+00:00 List-Id: >Michael F Brenner wrote: >>(1h) A FAST, mandatory, standarized way to put a stream of bytes out to >>a file, with no intermediate packages or code between the >>Ada call and the underlying file system WRITE and READ commands, >>giving random access to standard_input and the same I/O speed as >>competing languages, which now requires compiler dependent code. It seems to me that Ada.Streams.Stream_IO and Ada.Text_IO.Text_Streams address the issue. They provide a very low-level I/O interface (transfer an array of bytes to a file, and so forth). The latter allows access to standard input and output files. - Bob