コード例 #1
0
 static public int IsProperSupersetOf(IntPtr l)
 {
     try {
         IntHashSet self = (IntHashSet)checkSelf(l);
         System.Collections.Generic.IEnumerable <System.Int32> a1;
         checkType(l, 2, out a1);
         var ret = self.IsProperSupersetOf(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }