Exemple #1
0
            public SetValue Function(ArgumentsValue args)
            {
                SetValue set = @this as SetValue;

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

                return(SetValue.TIntersect(set, args));
            }
 public SetValue Function(SetValue set1, ArgumentsValue args)
 {
     return(SetValue.TIntersect(set1, args));
 }