Name
RawEqual -- compare two tables without metamethods (V2.0)
Synopsis
eq = RawEqual(t1, t2)
Function
This function compares the two tables and returns True if they are the same, False otherwise. This is basically the same as writing

 
eq = (t1 = t2)

The difference is, though, that RawEqual() will do the comparison without invoking any metamethod that might be defined in the tables. See Metamethods for details.

Inputs
t1
table 1 to compare
t2
table 2 to compare
Results
eq
True if tables are equal, False otherwise

Show TOC