Codectionary / Developer documentation / Lua

Lua operator metamethods

Lua reference for lua operator metamethods.

Syntax

Vector.__add = function(left, right)
  return Vector:new(left.x + right.x, left.y + right.y)
end

Examples

Lua operator metamethods example

A focused example you can adapt while practising.

Vector.__add = function(left, right)
  return Vector:new(left.x + right.x, left.y + right.y)
end

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Lightweight scripting and embedding
File extension
.lua
Runs in
Lua interpreter or a host application
Usually used with
Host APIs and Lua modules

Specifications & further reading

Related Lua documentation