Nevron.Nov.DataStructures Namespace / NChainNode<T> Class


In This Topic
    NChainNode<T> Class Properties
    In This Topic

    For a list of all members of this type, see NChainNode<T> members.

    Public Properties
     NameDescription
    Public PropertyQuerues whether this is the first node from its chain  
    Public PropertyQuerues whether this is the last node from its chain  
    Public PropertyQuerues whether this is a middle node from its chain (i.e. has both prev and next nodes).  
    Public PropertyGets or sets the item associated with this chain node  
    Public PropertyGets the next node in the chain, or null if this is the last node or node does not yet belong to a chain  
    Public PropertyGets the next node in the chain, if the chain is threated as a ring (doubly linked circular list) Throws an exception if the node does not belong to a chain.  
    Public PropertyGets the chain to which this node belongs, or null if this node does not yet belong to a chain.  
    Public PropertyGets the prev node in the chain, or null if this is the first node or node does not yet belong to a chain  
    Public PropertyGets the prev node in the chain, if the chain is threated as a ring (doubly linked circular list). Throws an exception if the node does not belong to a chain.  
    Top
    See Also