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=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9b7af277c3cfd5e,start X-Google-Attributes: gid103376,public From: frebourg@cui.unige.ch (FREBOURG Fabrice) Subject: + Operator Date: 1996/12/09 Message-ID: <58hf9j$bqe@uni2f.unige.ch>#1/1 X-Deja-AN: 203160077 organization: University of Geneva - CUI reply-to: frebourg@cui.unige.ch newsgroups: comp.lang.ada Date: 1996-12-09T00:00:00+00:00 List-Id: Hello, I'm programming with Ada95 on Solaris 2 and I'm a beginner. I would like some information about using the "+" symbol like a pointer operator for string. So I've created the following example. s: string; . . . procedure new_String(s_ptr:String_Ptr) is begin . . . end new_String; . . . s:="hello"; new_String(+s); Could you explain me such a mecanism because I don't understand it. Do I need to import a special librairy. Could tell me which one. Thank you an advance for your help. Fabrice (frebourg@cui.unige.ch)