Synopsis:
subsets s -- yields a list of the subsets of the set s.
i1 : subsets set {a,b,c} o1 = Set {{a, b}, {a, c}, {}, {b, c}, {a}, {b}, {c}, {a, b, c}} o1 : Set
See also:
Code:
-- ../m2/combinatorics.m2:18 subsets Set := x -> set subsets toList x