REBOL3 tracker
  0.9.12 beta
Ticket #0001357 User: anonymous

Project:



rss
TypeBug Statustested Date26-Nov-2009 08:15
Versionalpha 95 CategoryNative Submitted bymeijeru
PlatformAll Severitymajor Priorityhigh

Summary All equality operators except SAME? ignore that a bitset is complemented
Description This is perhaps indicative of the fact that the recently introduced "specification by complement" has not been taken into account in all the native functions. I have seen evidence in POKE (reported in #1355) and AND (not yet reported).
Example code
>> b: make bitset! #{00}
== make bitset! #{00}
>> equiv? b complement b
== true
>> equal? b complement b
== true
>> strict-equal? b complement b
== true
>> same? b complement b
== false

Assigned ton/a Fixed inalpha 97 Last Update8-Feb-2010 01:30


Comments

Date User Field Action Change
8-Feb-2010 01:30 BrianH Status Modified built => tested
6-Feb-2010 05:37 carl Fixedin Modified => alpha 97
6-Feb-2010 05:37 carl Status Modified reviewed => built
29-Nov-2009 05:20 BrianH Code Modified -
29-Nov-2009 05:20 BrianH Status Modified submitted => reviewed
29-Nov-2009 05:20 BrianH Priority Modified normal => high
26-Nov-2009 08:15 meijeru Ticket Added -