예제 #1
0
파일: Set.cs 프로젝트: rudimk/dlr-dotnet
        public static bool operator <=(SetCollection self, object other)
        {
            ISet s = other as ISet;

            if (s == null)
            {
                throw PythonOps.TypeError("can only compare to a set");
            }

            return(SetHelpers.IsSubset(self, s, false));
        }
예제 #2
0
 public object IsSubset(object s)
 {
     return(SetHelpers.IsSubset(this, s));
 }
예제 #3
0
파일: Set.cs 프로젝트: rudimk/dlr-dotnet
 public bool issubset(object set)
 {
     return(SetHelpers.IsSubset(this, set));
 }