DList is an ordered linear structure implementing the List signature (head, tail, cons), end-insertion (conj), and O(1) append. Ordering is by insertion history. DList is an implementation of [John Hughes' append list](http://dl.acm.org/citation.cfm?id=8475).
Instance member | Description |
|
|
|
|
Full Usage:
this.Head
Returns: 'T
|
|
Full Usage:
this.IsEmpty
Returns: bool
|
|
Full Usage:
this.Length
Returns: int
|
|
|
|
Full Usage:
this.TryHead
Returns: 'T option
|
|
|
|
|
|
|
|