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,FREEMAIL_FROM, INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,bd45e29f9dafca87,start X-Google-Attributes: gid103376,public From: Alexander Van Hecke Subject: bitwise comparators Date: 2000/01/15 Message-ID: <3880D375.7E363123@hotmail.com>#1/1 X-Deja-AN: 573084527 Cache-Post-Path: marvin!root@tvd-10-67-20-018.tvd.kotnet.kuleuven.ac.be Content-Transfer-Encoding: 7bit X-Accept-Language: en Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@belnet.be X-Trace: naxos.belnet.be 947966940 20164 134.58.127.3 (15 Jan 2000 20:09:00 GMT) Organization: KULeuvenNet X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) Mime-Version: 1.0 NNTP-Posting-Date: 15 Jan 2000 20:09:00 GMT Newsgroups: comp.lang.ada Date: 2000-01-15T20:09:00+00:00 List-Id: hello, I want to do the following : OK_to_proceed : BOOLEAN := FALSE; data : Unsigned_8; while (not OK_to_proceed) loop -- do stuff OK_to_proceed := (data BITWISE AND 2#1#); end loop; so I want to exit the loop if bit one of data is set, but I don't know what the bitwise and is! alex