Insert an element e into the set x.
use std::collections::HashSet
x.insert(e);
#include <set>
x.add(e);
x[e] = true
x[e] = struct{}{}
import java.util.Set;
x.add(e)
x := x + [e];
Include(x,e);
use Set::Scalar;
$x = Set::Scalar->new; $e = 'an element'; $x->insert($e);
require 'set'
x << e
No security, no password. Other people might choose the same nickname.