From: ts Date: 2002-08-01T00:03:46+09:00 Subject: Re: A truth? patch + benchmarks >>>>> "C" == Christoph writes: C> I also cooked up simple minded an implementation. It is based on C> a FL_FALSE flag (I defined it to be 1<<5 not sure if this can C> case any problem?) similar to the frozen or tainted flags - that C> is I added there methods (the method names ain't great ..) Not really sure but the values < 64 reserved for T_MASK #define T_NIL 0x01 #define T_OBJECT 0x02 [etc] #define T_NODE 0x3f #define T_MASK 0x3f Guy Decoux