Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: PosetNode<T>(T, params T[])

  • Declared in: RT.KitchenSink.Collections.PosetNode<T>

Declaration

public PosetNode<T>(
    T element,
    params T[] elements
)

Summary

Creates a new node and initialises it with the single element. A node is only permitted to exist if it contains at least one element.

Parameters

TelementAn element to store in this node. This determines the equivalence class, and it will not be possible to add further elements not equal to this one.
T[]elementsAny additional elements to add to the node.