mecca.containers.lists

Undocumented in source.

Members

Aliases

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.

Structs

_LinkedList
struct _LinkedList(T, string nextAttr, string prevAttr, string ownerAttr, bool withLength)

//////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////

_LinkedQueue
struct _LinkedQueue(T, string nextAttr, bool withLength)

//////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////

Meta