Header menu logo B2R2

Edge<'V, 'E> Type

Represents an edge of a graph.

Instance members

Instance member Description

this.First

Full Usage: this.First

Returns: IVertex<'V>

Returns source vertex of the edge. For undirected graphs, this is the first vertex that was added to the edge.

Returns: IVertex<'V>

this.HasLabel

Full Usage: this.HasLabel

Returns: bool

Returns true if the edge has a label. When this is true, `Label` should not raise `DummyDataAccessException`.

Returns: bool

this.Label

Full Usage: this.Label

Returns: 'E

Returns the label of the edge. This can raise `DummyDataAccessException` when the edge has no label.

Returns: 'E

this.Second

Full Usage: this.Second

Returns: IVertex<'V>

Returns target vertex of the edge. For undirected graphs, this is the second vertex that was added to the edge.

Returns: IVertex<'V>

Type something to start searching.