TBits.Equals

Determines whether the bits of 2 arrays are equal.

Declaration

Source position: classesh.inc line 413

public 
  function Equals(Obj: TObject) : Boolean;  Override;  Overload;
  function Equals(BitSet: TBits) : Boolean;  Overload;

Description

equals returns True if all the bits in BitSet are the same as the ones in the current BitSet; if not, False is returned.

If the sizes of the two BitSets are different, the arrays are still reported equal when all the bits in the larger set, which are not present in the smaller set, are zero.

Errors

None.

See also

Name Description
andBits Performs an and operation on the bits.
ClearAll Clears all bits in the array.
OrBits Performs an or operation on the bits.
XOrBits Performs a xor operation on the bits.