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,b394cc2aa7252501,start X-Google-Attributes: gid103376,public From: Scott Sheffield Subject: And Date: 1998/07/21 Message-ID: <35B4EC27.1E7B@lmtas.lmco.com>#1/1 X-Deja-AN: 373599969 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Organization: lmtas Mime-Version: 1.0 Reply-To: sheffield@lmtas.lmco.com Newsgroups: comp.lang.ada Date: 1998-07-21T00:00:00+00:00 List-Id: I have a function that I am trying to convert for use on my PC using adagide : function "and" (l,r : in system.unsigned_word) return system.unsigned_word renames system."and"; I do not have access to the system package that this code is trying to call, but I have looked at the adagide system package and cannot find the definition of unsigned_word. I understand I am overloading the reserved word "and" but I am not clear as to the results. If I say tmp:= a_unsigned_word and another_unsigned_word will I get a composite of these two words or is this a boolean?I am new to Ada so forgive me if do not seem very knowlegable but I'm trying.