June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -7,8 +7,8 @@ my $c = set <a b c d e>;
ok 'c' $a, "c is an element in set A";
nok 'd' $a, "d is not an element in set A";
is $a $b, set(<a b c d>), "union; a set of all elements either in set A or in set B";
is $a $b, set(<b c>), "intersection; a set of all elements in both set A and set B";
is-deeply $a $b, set(<a b c d>), "union; a set of all elements either in set A or in set B";
is-deeply $a $b, set(<b c>), "intersection; a set of all elements in both set A and set B";
is $a (-) $b, set(<a>), "difference; a set of all elements in set A, except those in set B";
ok $a $c, "subset; true if every element in set A is also in set B";