TupleCollection.CrossProduct method
Computes the cross product of two sets of tuples.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Shared Function CrossProduct ( _
rowTuples As TupleCollection, _
colTuples As TupleCollection _
) As TupleCollection
'Usage
Dim rowTuples As TupleCollection
Dim colTuples As TupleCollection
Dim returnValue As TupleCollection
returnValue = TupleCollection.CrossProduct(rowTuples, _
colTuples)
public static TupleCollection CrossProduct(
TupleCollection rowTuples,
TupleCollection colTuples
)
Parameters
rowTuples
Type: Microsoft.PerformancePoint.Scorecards.TupleCollectionA set of row tuples.
colTuples
Type: Microsoft.PerformancePoint.Scorecards.TupleCollectionA set of column tuples.
Return value
Type: Microsoft.PerformancePoint.Scorecards.TupleCollection
The cross product of the row and column tuples.
Remarks
If one of the specified tuple collections is empty or null, then the other tuple collection is returned. If both tuple collections are null or empty, then an empty collection is returned.