Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Equivalence operators

There are three meta methods used to compare objects for equality. For these meta methods to work, both tables must have the same comparison meta method! Each of these meta methods takes two arguments, the tables being compared:

  • __eq: Check for equality, when table1 == table2 is evaluated
  • _lt: Check for less than, when table1 < table2 is evaluated
  • __le: Check for less than or equal to, when table1 <= table2 is evaluated

The __eq meta method checks equality; for example, the expression table1 == table2 is actually evaluated as getmetatable(table1).__eq(table1, table2). But, this _eq meta method is also used to check for inequality. The expression table1 ~= table2 is evaluated as not (a == b), which can be expanded into ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content