160161162163164165166
* * @param n maximal size of the set * @return a new set */ public static ISet makeArray(int n) { return new Set_Array(n); }