Enhanced C#
Loyc library documentation
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
Properties | List of all members
Loyc.Graphs.INode< out EdgeList > Interface Template Reference

A node in a graph. More...


Source file:
Inheritance diagram for Loyc.Graphs.INode< out EdgeList >:
Loyc.Graphs.IOutbound< out EdgeList >

Remarks

A node in a graph.

Properties

EdgeList Inbound [get]
 Gets edges whose value of ITo{Node}.To is this node, or default(EdgeList) if HasEdgesIn is false. More...
 
bool HasInbound [get]
 Returns true iff this node has access to its list of incoming edges. Normally, this property is the same for all nodes of a given type. More...
 
- Properties inherited from Loyc.Graphs.IOutbound< out EdgeList >
EdgeList Outbound [get]
 Gets edges leaving this node. More...
 

Property Documentation

bool Loyc.Graphs.INode< out EdgeList >.HasInbound
get

Returns true iff this node has access to its list of incoming edges. Normally, this property is the same for all nodes of a given type.

EdgeList Loyc.Graphs.INode< out EdgeList >.Inbound
get

Gets edges whose value of ITo{Node}.To is this node, or default(EdgeList) if HasEdgesIn is false.