libd ~master (2021-08-29T21:20:58Z)
Dub
Repo
LinkedList.Node
libd
datastructures
linkedlist
LinkedList
Undocumented in source.
struct
LinkedList
(alias T, alias AllocT = SystemAllocator)
static
struct
Node {
T
value
;
Node
*
next
;
Node
*
prev
;
}
Members
Variables
next
Node
*
next
;
Undocumented in source.
prev
Node
*
prev
;
Undocumented in source.
value
T
value
;
Undocumented in source.
Meta
Source
See Implementation
libd
datastructures
linkedlist
LinkedList
aliases
getAt
put
removeAt
constructors
this
destructors
~this
functions
getAtHead
insertAt
moveTail
opDollar
opIndex
putHead
putTail
removeAtHead
removeAtTail
postblits
this(this)
properties
length
range
structs
Node