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.1 required=5.0 tests=BAYES_05,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9559956f3f3ac452 X-Google-Attributes: gid103376,public From: Ken Price Subject: Re: reset boolean. Date: 1996/08/19 Message-ID: <3218481D.22CD@mail09.mitre.org>#1/1 X-Deja-AN: 175061511 references: <4v8jks$gjs@goanna.cs.rmit.edu.au> to: Charlie_Brown content-type: text/plain; charset=us-ascii organization: The MITRE Corporation mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 2.02Gold (Win95; I) Date: 1996-08-19T00:00:00+00:00 List-Id: Charlie_Brown wrote: > > Hi to all, > I have a question regarding a boolean statement. > What I want to do is reset the statement to neither false nor true. > Is it possible? > If anyone has an idea please help me out. > Thanks in advance. > Lyndon. > > ____________________________________________________________________ > | ----====>>>> Lyndon Bernard Firmin <<<<====---- | > |--==>> The Royal Melbourne Institute of Techology, Australia <<==-- | > | ----====>>>> email: firmin@yallara.cs.rmit.edu.au <<<<====---- | > |____________________________________________________________________| You really don't want a boolean value then. Create another enumeration type to do your bidding... The new enumeration type can contain the enumerations False, True, and Neither_True_Nor_False; the compiler will not confuse the True/False of Boolean and your True/False.