- LinkedList
alias LinkedList(T, string nextAttr = "_next", string prevAttr = "_prev") = _LinkedList!(T, nextAttr, prevAttr, "", false)
Undocumented in source.
- LinkedListWithLength
alias LinkedListWithLength(T, string nextAttr = "_next", string prevAttr = "_prev") = _LinkedList!(T, nextAttr, prevAttr, "", true)
Undocumented in source.
- LinkedListWithLengthAndOwner
alias LinkedListWithLengthAndOwner(T, string nextAttr = "_next", string prevAttr = "_prev", string ownerAttr = "_owner") = _LinkedList!(T, nextAttr, prevAttr, ownerAttr, true)
Undocumented in source.
- LinkedListWithOwner
alias LinkedListWithOwner(T, string nextAttr = "_next", string prevAttr = "_prev", string ownerAttr = "_owner") = _LinkedList!(T, nextAttr, prevAttr, ownerAttr, false)
Undocumented in source.
- LinkedQueue
alias LinkedQueue(T, string nextAttr = "_next") = _LinkedQueue!(T, nextAttr, false)
Undocumented in source.
- LinkedQueueWithLength
alias LinkedQueueWithLength(T, string nextAttr = "_next") = _LinkedQueue!(T, nextAttr, true)
Undocumented in source.