dlib ~master (2021-07-06T21:20:15Z)
Home
Dub
Repo
LinkedListElement
dlib
container
linkedlist
Element of single linked list.
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
dlib
container
linkedlist
structs
LinkedList
LinkedListElement
Element of single linked list.