Bug in TValue helper?

Issue #33 resolved
Former user created an issue

class function TValueHelper.Equals(const Left, Right: TArray<TValue>): Boolean; var i: Integer; begin Result := Length(Left) = Length(Left); <-- this is correct? if Result then

Comments (2)

  1. Former user Account Deleted
    class function TValueHelper.Equals(const Left, Right: TArray<TValue>): Boolean; 
    var 
     i: Integer; 
    begin 
     Result := Length(Left) = Length(Left); <-- this is correct? 
     if Result then
    
  2. Log in to comment