Click or drag to resize

GraphGetEdgesT Method (String, T)

Return an iterable to all the edges in the graph that have a particular key/value property.

Namespace:  VelocityGraph
Assembly:  VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax
public virtual IEnumerable<IEdge> GetEdges<T>(
	string key,
	T value
)
where T : IComparable

Parameters

key
Type: SystemString
the key of the edge
value
Type: T
the value of the edge

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:VelocityGraph.Graph.GetEdges``1(System.String,``0)"]

Return Value

Type: IEnumerableIEdge
an iterable of edges with provided key and value
See Also