Logo

Programming-Idioms

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

Idiom #276 Insert an element in a set

Insert an element e into the set x.

x.add(e);

x has type Set
#include <set>
x.insert(e);

New implementation...