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,5641e390ebac2f88 X-Google-Attributes: gid103376,public From: dewar@merv.cs.nyu.edu (Robert Dewar) Subject: Re: How does one use Ada.Streams.Stream_IO? Date: 1997/07/30 Message-ID: #1/1 X-Deja-AN: 260764905 References: <33DF3D90.155D@mail.connect.usq.edu.au> Organization: New York University Newsgroups: comp.lang.ada Date: 1997-07-30T00:00:00+00:00 List-Id: Matt asks <> Well you won't get very far trying to instantiate Stream_IO, since it is not a generic package! Just with it, and then use the subprograms much as you would in the case of Text_IO, except that the actual stream operations are typically done using the standard stream attributes, e.g. x'Output (stream, item) to write and X'Input (Stream) to read.