Click or drag to resize

PartitionedMultiset Class

Implementation of a multiset which is suitable for multiple threads to write to in parallel, useful for parallelizing certain operations.
Inheritance Hierarchy

Namespace:  VDS.RDF.Query.Algebra
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class PartitionedMultiset : BaseMultiset

The PartitionedMultiset type exposes the following members.

Constructors
  NameDescription
Public methodPartitionedMultiset
Creates a new Partionted Multiset.
Top
Properties
Methods
  NameDescription
Public methodAdd
Adds a Set to the multiset.
(Overrides BaseMultisetAdd(ISet).)
Public methodAddVariable
Adds a Variable to the multiset.
(Overrides BaseMultisetAddVariable(String).)
Public methodContainsValue
Determines whether a given Value is present for a given Variable in any Set in this Multiset.
(Overrides BaseMultisetContainsValue(String, INode).)
Public methodContainsVariable
Returns whether a given Variable is present in any Set in this Multiset.
(Overrides BaseMultisetContainsVariable(String).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExistsJoin
Does an Exists Join of this Multiset to another Multiset where the Join is predicated on the existence/non-existence of a joinable solution on the RHS.
(Inherited from BaseMultiset.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetNextBaseID
Gets the next Base ID to be used.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsDisjointWith
Determines whether this Multiset is disjoint with another Multiset.
(Overrides BaseMultisetIsDisjointWith(BaseMultiset).)
Public methodJoin
Joins this Multiset to another Multiset.
(Inherited from BaseMultiset.)
Public methodLeftJoin
Does a Left Join of this Multiset to another Multiset where the Join is predicated on the given Expression.
(Inherited from BaseMultiset.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMinusJoin
Does a Minus Join of this Multiset to another Multiset where any joinable results are subtracted from this Multiset to give the resulting Multiset.
(Inherited from BaseMultiset.)
Public methodProduct
Does a Product of this Multiset and another Multiset.
(Inherited from BaseMultiset.)
Public methodRemove
Removes a Set from the multiset.
(Overrides BaseMultisetRemove(Int32).)
Public methodSetVariableOrder
Sets the variable ordering for the multiset.
(Overrides BaseMultisetSetVariableOrder(IEnumerableString).)
Public methodSort
Sorts a Set based on the given Comparer.
(Inherited from BaseMultiset.)
Public methodToString
Gets the string representation of the multiset (intended for debugging only).
(Inherited from BaseMultiset.)
Public methodTrim
Removes temporary variables from all sets the multiset.
(Overrides BaseMultisetTrim.)
Public methodTrim(String)
Removes a specific variable from all sets in the multiset.
(Overrides BaseMultisetTrim(String).)
Public methodUnion
Does a Union of this Multiset and another Multiset.
(Overrides BaseMultisetUnion(BaseMultiset).)
Top
Fields
  NameDescription
Protected field_orderedIDs
List of IDs that is used to return the Sets in order if the Multiset has been sorted.
(Inherited from BaseMultiset.)
Top
Extension Methods
  NameDescription
Public Extension MethodProductWithTimeout
Calculates the product of two multi-sets asynchronously with a timeout to restrict long running computations.
(Defined by AlgebraExtensions.)
Top
See Also