CollectionTRecord, TTimeIntersect Method Naiad Help

[This is preliminary documentation and is subject to change.]

Computes the multiset intersection of this collection and the other collection.

Namespace: Microsoft.Research.Naiad.Frameworks.DifferentialDataflow
Assembly: Microsoft.Research.Naiad.DifferentialDataflow (in Microsoft.Research.Naiad.DifferentialDataflow.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax

C#
Collection<TRecord, TTime> Intersect(
	Collection<TRecord, TTime> other
)

Parameters

other
Type: Microsoft.Research.Naiad.Frameworks.DifferentialDataflowCollectionTRecord, TTime
The other collection.

Return Value

Type: CollectionTRecord, TTime
The collection containing the multiset intersection of the two input collections.
Remarks

The multiset union contains each record in both this collection and the other collection. For each record in both collections, the multiplicity of that record in the multiset intersection will be the lesser of its multiplicities in either collection.
See Also

Reference