  | SubsetBitwiseAnd Operator | 
            Returns the intersection of two subsets.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static Subset operator &(
	Subset x,
	Subset y
)
Public Shared Operator And ( 
	x As Subset,
	y As Subset
) As Subset
public:
static Subset^ operator &(
	Subset^ x, 
	Subset^ y
)
static let inline (&&&)
        x : Subset * 
        y : Subset  : SubsetParameters
- x  Subset
 - A subset.
 - y  Subset
 - A subset.
 
Return Value
SubsetA new subset containing the intersection of 
x and 
y.
See Also