Interface IVertexEdgeDictionary<TVertex, TEdge>
A cloneable dictionary of vertices associated to their edges.
Inherited Members
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Add(TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.ContainsKey(TVertex)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Remove(TVertex)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.TryGetValue(TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>)
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Item[TVertex]
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Keys
System.Collections.Generic.IDictionary<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>.Values
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Add(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Clear()
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Contains(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.CopyTo(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>[], System.Int32)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Remove(System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>)
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.Count
System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.IsReadOnly
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TVertex, QuikGraph.Collections.IEdgeList<TVertex, TEdge>>>.GetEnumerator()
System.Collections.IEnumerable.GetEnumerator()
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
Namespace: QuikGraph.Collections
Assembly: QuikGraph.dll
Syntax
public interface IVertexEdgeDictionary<TVertex, TEdge> : IDictionary<TVertex, IEdgeList<TVertex, TEdge>>, ICollection<KeyValuePair<TVertex, IEdgeList<TVertex, TEdge>>>, IEnumerable<KeyValuePair<TVertex, IEdgeList<TVertex, TEdge>>>, IEnumerable, ICloneable, ISerializable where TEdge : IEdge<TVertex>
Type Parameters
Name | Description |
---|---|
TVertex | Vertex type. |
TEdge | Edge type. |
Methods
| Improve this Doc View SourceClone()
Gets a clone of the dictionary. The vertices and edges are not cloned.
Declaration
IVertexEdgeDictionary<TVertex, TEdge> Clone()
Returns
Type | Description |
---|---|
IVertexEdgeDictionary<TVertex, TEdge> | Cloned dictionary. |