CollectionTRecord, TTimeExcept Method Naiad Help

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

Computes the multiset difference of this collection minus 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> Except(
	Collection<TRecord, TTime> other
)

Parameters

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

Return Value

Type: CollectionTRecord, TTime
The collection containing all records in this collection that are not in the other collection.
Remarks

The behavior of this operator is undefined when the other collection contains records that are not in this collection.
See Also

Reference