コード例 #1
0
ファイル: SetValue.cs プロジェクト: marcusanth/YAMP
            public SetValue Function(ArgumentsValue args)
            {
                SetValue set = @this as SetValue;

                if (ReferenceEquals(set, null))
                {
                    throw new YAMPSetsFunctionNotMemberException("SetIntersect");
                }

                return(SetValue.TIntersect(set, args));
            }
コード例 #2
0
ファイル: TIntersectFunction.cs プロジェクト: marcusanth/YAMP
 public SetValue Function(SetValue set1, ArgumentsValue args)
 {
     return(SetValue.TIntersect(set1, args));
 }