Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Lua

Idiom #276 Insert an element in a set

Insert an element e into the set x.

x[e] = true

Lua tables work as arrays, maps and sets
#include <set>
x.insert(e);

New implementation...