I'm just starting out with Perl6, and I'm trying to determine how to add an element to a SetHash. It seems that hash notation works, but I'm wondering if I'm missing a method that does the same thing? I'm looking at the SetHash documentation, but I find it a bit opaque.
my $foo = SetHash.new();
$foo{'a'} = True;
'a' ∈ $foo # True;
my %foo is SetHash; %foo<a> = 32; say %foo<a>; # True( also why do you have a defined-or operator//there? )