dmech v0.4.1 (2020-07-30T18:32:41Z)
Home
Dub
Repo
LinkedListElement
dgl
util
linkedlist
Undocumented in source.
struct
LinkedListElement (
T
) {
LinkedListElement
!(
T
)*
next
;
T
datum
;
this
(LinkedListElement!(T)* n);
}
Constructors
this
this
(LinkedListElement!(T)* n)
Undocumented in source.
Members
Variables
datum
T
datum
;
Undocumented in source.
next
LinkedListElement
!(
T
)*
next
;
Undocumented in source.
Meta
Source
See Implementation
dgl
util
linkedlist
structs
LinkedList
LinkedListElement